Save DataFrame to a CSV file
Read a CSV file into a DataFrame
View the first few rows of a DataFrame
Save DataFrame to an Excel file
df.to_excel
df.to_excel() saves DataFrame to Excel format (.xlsx).
Export to Excel without index
df.to_excel("output.xlsx", index=False)
Get concise summary of DataFrame
Group DataFrame using one or more columns
Create a pivot table from DataFrame