Generate sparse vector for all the column values in spark dataframe

453 Views Asked by At
column1 column2
1 1
1 0
1 0
0 0

Now I want to calculate the hash or sparse vector of all the values in column1 and column2

1

There are 1 best solutions below

1
On

You can use VectorAssembler. It creates SparseVector by default.