Module 3 Assessment: Pandas Import Check
Assessment ID: DAV-M03-QA01 Estimated active time: 25-35 minutes
Part A: Short answers
- What is a DataFrame?
- What is a Series?
- Why should you inspect data before cleaning it?
- What does
shapetell you? - Why should raw data not be overwritten?
Part B: Code check
Write pandas code to:
- Load
data/course_enrolments.csv. - Show the first rows.
- Print row and column count.
- Count missing values by column.
- Count values in a
statuscolumn. - Save a copy to
outputs/course_enrolments_inspected.csv.
Rubric
| Level | Evidence |
|---|---|
| Pass | Code loads data with a relative path, inspects structure, checks missingness, and saves safely. |
| Revise | Code loads data but inspection notes or safe export are incomplete. |
| Not yet | Code jumps to cleaning or analysis without first understanding the table. |
