Spark Programming Spark SQL - Big Data

Creating a DataFrame using toDF Spark SQL provides an implicit conversion method named toDF, which creates a DataFrame from an RDD of objects represented by a case class. • Spark SQL infers the schema of a dataset. • The toDF method is not defined in the RDD class, but it is available through an implicit conversion. ................
................