Kevin Zhou
Kevin Zhou

Reputation: 103

How to convert dataframe to spark rows

I am looking to get a Spark Row(s) from Apache Dataframe. I have tried searching online but could not find anything

Upvotes: 0

Views: 75

Answers (1)

Angel F O
Angel F O

Reputation: 76

You can do

Dataframe.map(x => x.getAsROW)

Upvotes: 1

Related Questions