Create DataFrame from list or RDD
Display rows of DataFrame
Print schema of DataFrame
Alternative to filter()
df.where()
Works the same as filter() for conditions.
Filter rows with age = 30
df.where(df.age == 30).show()
Select specific columns from DataFrame
Filter DataFrame based on condition
Group DataFrame by column(s)