All pandas problems
EasyLoad + Inspect
Load a sales CSV
Load a small D2C sales file into a DataFrame, print the first 5 rows, and print the shape.
- #read_csv
- #head
- #shape
Sample input
12 rows × 5 cols (date, city, product, units, revenue)
Sample output
head() + Shape: (12, 5)
pd-load-csv.pyneeds: pandas
Output
Press "Run code" to execute.
