Clean data
Get your data ready for analysis.
Cleaning data in Quadratic is more seamless than you may be used to, as your data is viewable in the sheet as you step through your DataFrame. Every change to your DataFrame can be reflected in the sheet in real-time. Some data cleaning steps you may be interested in taking (very much non-exhaustive!):
1. View select sections of your DataFrame in the sheet
Assume DataFrame named df
. With df.head()
you can display the first x rows of your spreadsheet. With this as your last line the first x rows will display in the spreadsheet. You can do the same except with the last x rows via df.tail()
2. Drop specified columns
Deleting columns point and click can be done by highlighting the entire column and pressing Delete
. Alternatively, do this programmatically with the code below.
3. Field-specific changes
There are many ways to make field-specific changes, but this list will give you some ideas.
4. Clean columns
Going column by column to clean specific things is best done programmatically.
5. Delete select rows
With the beauty of Quadratic, feel free to delete rows via point and click; in other cases, you may need to do this programmatically.
6. Delete empty rows
Identifying empty rows should be intuitive in the spreadsheet via point-and-click; in other cases, you may need to do this programmatically.
7. Change data types
By default, Quadratic inputs will be read as strings by Python code. Manipulate these data types as you see fit in your DataFrame.
8. Remove duplicates
Duplicates are likely best removed programmatically, not visually. Save some time with the code below.
Last updated