Filter DataFrame based on condition
Create DataFrame from list or RDD
Print schema of DataFrame
Display rows of DataFrame
df.show()
Prints first n rows of DataFrame in tabular form.
Show first 5 rows
df.show(5)
Select specific columns from DataFrame
Group DataFrame by column(s)
Sort DataFrame by column(s)