Module 3 Activity: First Pandas Inspection
Estimated active time: 60-75 minutes
Task
Load a supplied fictional enrolment table and create a first inspection record.
Steps
- Import pandas as
pd. - Load the CSV file using a relative path.
- Display the first five rows.
- Record shape.
- Record column names.
- Use
info()to inspect dtypes and non-null counts. - Use
describe()for numeric columns. - Use
value_counts()for at least two categorical columns. - Count missing values by column.
- Draft a data dictionary with at least six columns.
- Save an inspected copy to an output path without overwriting the source file.
Deliverable
- Import and inspection notebook.
- Data dictionary draft.
- One paragraph explaining the row meaning and the biggest data concern.
Quality bar
The activity is ready when another person can open your notes and understand what each important column means.
