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