IndexedRow¶
- 
class pyspark.mllib.linalg.distributed.IndexedRow(index: int, vector: VectorLike)[source]¶
- Represents a row of an IndexedRowMatrix. - Just a wrapper over a (int, vector) tuple. - Parameters
- indexint
- The index for the given row. 
- vectorpyspark.mllib.linalg.Vectoror convertible
- The row in the matrix at the given index.