CSV Summary
When to use
The user has a CSV file and wants to understand its shape before doing anything else.
Steps
- Read the file path the user provided.
- Run
scripts/summarize.py <path>. - Report row count, column dtypes, null counts, and the first five rows.
Notes
- Do not modify the source file.
- If the file is larger than 100 MB, read it in chunks.