I have a List[org.apache.spark.sql.Row]
which I got from a ListBuffer[org.apache.spark.sql.Row]()
How do I turn this into a dataframe?
obviously .toDF
(or RDD
) does not work...
I have a List[org.apache.spark.sql.Row]
which I got from a ListBuffer[org.apache.spark.sql.Row]()
How do I turn this into a dataframe?
obviously .toDF
(or RDD
) does not work...