Skip to content
Learn Netverks

Lesson

Step 8/36 22% through track

descriptive-statistics

Descriptive statistics

Last reviewed Jun 1, 2026 Content v20260601
Track mode
server_script
Means
Server runner
Reading
~1 min
Level
beginner

This lesson

This lesson teaches Descriptive statistics: the data science mindset, methods, and communication habits behind evidence-based decisions.

Teams apply Descriptive statistics in every serious Data Science project—skipping it leaves blind spots in analysis and reviews.

You will apply Descriptive statistics in contexts like: Analytics teams, product experimentation, research labs, and ML-adjacent engineering in every data-driven company.

Read the narrative, run Python in the playground (stdlib snippets now; install Jupyter, pandas, and scikit-learn locally for full notebooks), and complete MCQs to lock in vocabulary.

When you can explain the previous lesson's ideas in your own words.

Summarize samples with center (mean, median), spread (variance, IQR), and shape (skew, outliers).

Center and spread

  • Mean — sensitive to outliers
  • Median — robust middle value
  • Standard deviation — typical distance from mean
  • IQR — middle 50% spread; basis for outlier rules

Percentiles

P95 latency means 95% of requests are faster—common SLA language. Report percentiles for skewed metrics (income, latency).

Important interview questions and answers

  1. Q: Mean vs median?
    A: Median better when outliers skew mean.
  2. Q: P95?
    A: 95th percentile—only 5% of values are higher.

Self-check

  1. When prefer median over mean?
  2. What does standard deviation measure?

Tip: Report median with mean when distributions are skewed.

Interview prep

Median vs mean?

Median robust to outliers; mean sensitive.

P95?

95th percentile—5% of values exceed it.

Interview tip Lesson completion confidence

Can you explain this lesson in 30 seconds without reading notes?

Not saved yet.

Playground

Runs on the configured server runner (dev: npm run runner with LEARNING_RUNNER_ENABLED=true). Output appears below the editor.

Check yourself

Multiple choice — immediate feedback.

Discussion

Past discussion is visible to everyone. Only logged-in users can post comments and replies.

Starter discussion topics

  • Mean vs median?
  • P95 meaning?

Sign up or log in to post comments and sync lesson progress across devices.

No discussion yet. Be the first to ask a question.

Jump