Package org.apache.spark.ml.linalg
Class SparseVector
Object
org.apache.spark.ml.linalg.SparseVector
- All Implemented Interfaces:
- Serializable,- Vector
A sparse vector represented by an index array and a value array.
 
param: size size of the vector. param: indices index array, assume to be strictly increasing. param: values value array, must have the same length as the index array.
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiondoubleapply(int i) Gets the value of the ith element.intargmax()Find the index of a maximal element.copy()Makes a deep copy of this vector.booleaninthashCode()Returns a hash code value for the vector.int[]indices()intNumber of active entries.intNumber of nonzero elements.intsize()Size of the vector.double[]toArray()Converts the instance to a double array.toString()static scala.Option<scala.Tuple3<Object,int[], double[]>> unapply(SparseVector sv) double[]values()Methods inherited from interface org.apache.spark.ml.linalg.Vectorcompressed, compressedWithNNZ, dot, foreach, foreachActive, foreachNonZero, nonZeroIterator, toDense, toSparse
- 
Constructor Details- 
SparseVectorpublic SparseVector(int size, int[] indices, double[] values) 
 
- 
- 
Method Details- 
unapply
- 
sizepublic int size()Description copied from interface:VectorSize of the vector.
- 
indicespublic int[] indices()
- 
valuespublic double[] values()
- 
toString
- 
toArraypublic double[] toArray()Description copied from interface:VectorConverts the instance to a double array.
- 
copyDescription copied from interface:VectorMakes a deep copy of this vector.
- 
applypublic double apply(int i) Description copied from interface:VectorGets the value of the ith element.
- 
equals
- 
hashCodepublic int hashCode()Description copied from interface:VectorReturns a hash code value for the vector. The hash code is based on its size and its first 128 nonzero entries, using a hash algorithm similar tojava.util.Arrays.hashCode.
- 
numActivespublic int numActives()Description copied from interface:VectorNumber of active entries. An "active entry" is an element which is explicitly stored, regardless of its value. Note that inactive entries have value 0.- Specified by:
- numActivesin interface- Vector
- Returns:
- (undocumented)
 
- 
numNonzerospublic int numNonzeros()Description copied from interface:VectorNumber of nonzero elements. This scans all active values and count nonzeros.- Specified by:
- numNonzerosin interface- Vector
- Returns:
- (undocumented)
 
- 
argmaxpublic int argmax()Description copied from interface:VectorFind the index of a maximal element. Returns the first maximal element in case of a tie. Returns -1 if vector has length 0.
 
-