Clean data
Get your data ready for analysis.
1. View select sections of your DataFrame in the sheet
# Display first five rows
df.head(5)
# Display last five rows
df.tail(5)2. Drop specified columns
3. Field-specific changes
4. Clean columns
5. Delete select rows
6. Delete empty rows
7. Change data types
8. Remove duplicates
Last updated
Was this helpful?