Convert column to categorical dtype
Read a CSV file into a DataFrame
View the first few rows of a DataFrame
Check DataFrame memory usage
df.memory_usage
df.memory_usage() returns memory usage of each column.
Detailed memory usage
df.memory_usage(deep=True)
Get concise summary of DataFrame
Group DataFrame using one or more columns
Create a pivot table from DataFrame