Reputation: 103
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
Reputation: 76
You can do
Dataframe.map(x => x.getAsROW)
Upvotes: 1