Reshape data from long to wide format
Group DataFrame using one or more columns
Unpivot DataFrame from wide to long format
Create a pivot table from DataFrame
pd.pivot_table
pd.pivot_table() is used to create spreadsheet-style pivot tables.
Pivot table with mean aggregation
pd.pivot_table(df, values="col1", index="col2", aggfunc="mean")
Read a CSV file into a DataFrame
View the first few rows of a DataFrame
Get concise summary of DataFrame