0
是否可以通過提供座標獲取mllib indexedRowMatrix類型的矩陣內容?例如。pyspark mllib IndexedRowMatrix類型如何通過索引獲得項目
rows = sc.parallelize([IndexedRow(0, [1, 2, 3]),IndexedRow(1, [4, 5, 6]),IndexedRow(2, [7, 8, 9]),IndexedRow(3, [10, 11, 12])])
mat = IndexedRowMatrix(rows)
如果我給座標(0,1)
,我應該得到2從mat