Milestone map
Milestone map
5 milestones
Take any real dataset with at least 5,000 rows and at least 4 numeric columns. For each numeric column compute the mean, median, standard deviation, and identify outliers using the IQR method. Then write a one-paragraph interpretation of each column — not the numbers, what the numbers MEAN about the thing being measured. Use Python with NumPy and pandas, or R. No spreadsheets.
Proof required
Share a Jupyter notebook or Python script (GitHub link) that loads the dataset, computes the descriptive statistics, and prints the results. Share a screenshot of the output. Write 200 words on one column where the mean and median differ significantly — what does that gap tell you about the distribution, and what would be misleading about reporting only the mean?
What gets checked
- Outlier detection uses IQR method (Q1 - 1.5×IQR, Q3 + 1.5×IQR) — the code must show the explicit calculation, not a z-score cutoff or eyeballed filter
- The mean/median interpretation names the specific column, states both values, and explains what the gap reveals about the shape of the distribution — not just 'they are different'
- The dataset has at least 5,000 rows and is real — not generated or invented; a CSV import from a public source with the data provenance noted in the notebook
Resources
Enroll free to unlock learning resources →Mastery
Unlocks after completing Foundation + Depth