Descriptive statistics is the branch of statistics focused on summarizing and describing data using numerical measures and graphical representations. It forms the foundation of data analysis across fields from business intelligence to scientific research, providing the essential first step before any inferential work. Unlike inferential statistics which draws conclusions about populations, descriptive statistics simply characterizes the observed data itself. The key insight: nearly every dataset can be understood through three lenses—center (where most values cluster), spread (how widely values vary), and shape (how the distribution looks)—making these core concepts universally applicable regardless of domain.
What This Cheat Sheet Covers
This topic spans 15 focused tables and 107 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.
A jump-to index of every table row in this cheat sheet.
An interactive map of every table and concept in this topic.
Table 1: Data Types and Measurement Levels
Before you pick any statistic, you have to know what kind of data you're holding — the measurement level decides which calculations are even meaningful. Nominal labels can only be counted, ordinal categories can be ranked but not averaged, and only interval and ratio data support the full arithmetic of means and standard deviations. Getting this classification right is the single most common place beginners go wrong.
| Type | Example | Description |
|---|---|---|
colors = ['red', 'blue', 'green'] | • Categorical data with no inherent order • values are distinct labels that cannot be ranked (gender, country, product type). | |
satisfaction = ['low', 'medium', 'high'] | • Categorical data with meaningful order but unequal intervals • differences between levels are not quantifiable (education level, survey ratings). | |
temp_c = [0, 10, 20, 30] | • Numerical data with equal intervals but no true zero • ratios are meaningless (temperature in Celsius, calendar years). | |
height = [150, 165, 180] | • Numerical data with equal intervals and a true zero • all arithmetic operations including ratios are valid (height, weight, income, age). |