Reputation: 23
Im trying to find DataFrame class definition in scala source code not in pyspark.
There is some files like DataFrameReader, DataFrameWriter, Dataset But not DataFrame.
I have found some directories such as spark/sql, spark/core.
Upvotes: 2
Views: 379
Reputation: 301047
A DataFrame is just a Dataset[Row] and is a type alias:
type DataFrame = Dataset[Row]
Upvotes: 4