IndexedRow

class pyspark.mllib.linalg.distributed.IndexedRow(index: int, vector: VectorLike)

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.Vector or convertible

The row in the matrix at the given index.