All pandas problems
EasyLoad + Inspect
Check column dtypes
The moment you load a CSV, check what pandas inferred. Print df.dtypes so you can see whether date came in as object or datetime.
- #dtypes
- #info
Sample input
same sales CSV
Sample output
date object, city object, product object, units int64, revenue int64
pd-dtypes.pyneeds: pandas
Output
Press "Run code" to execute.
