Day 16 of improving my Data Science skills

Published: (November 30, 2025 at 05:44 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

Introduction to Statistics in Python – Measure of Center

Over the weekend I started the Introduction to Statistics in Python course. What stood out for me was numerical summary statistics—measures of center. They help us summarize our data, but choosing the correct “average” that truly represents the data is very important; otherwise we will be fooled by extreme values.

Data can lie if you use the wrong average

Imagine five kids with these allowances:

  • ₦100
  • ₦120
  • ₦110
  • ₦130
  • ₦1,000,000

Mean vs. Median

  • Mean – use when the data is symmetrical (evenly spread).
  • Median – use when the data is skewed (contains very big or very small values).

Real‑life example

Recruiters report median salary rather than mean salary, so a single billionaire doesn’t distort pay expectations.

Learning this again helped me understand the topic more clearly. Even on days when learning feels heavy, I’m grateful for every concept I now understand better than yesterday.

— SP 🤍

Back to Blog

Related posts

Read more »

Day 1276 : Career Climbing

Saturday Before heading to the station, I did some coding on my current side project. Made some pretty good progress and then it was time to head out. Made i...

JWT Token Validator Challenge

Overview In 2019 Django’s session management framework contained a subtle but catastrophic vulnerability CVE‑2019‑11358. The framework failed to properly inv...