All data in statistics can be classified into two main branches:
Data
├── Categorical
│ ├── Nominal
│ └── Ordinal
└── Numerical
├── Discrete
└── Continuous
Categorical data represents qualities or characteristics — values fall into categories, not numbers.
KEY TAKEAWAY: Ordinal data has order but not equal spacing. You can say “good is better than fair” but not “good is twice as good as fair.”
Numerical data represents quantities that can be measured or counted.
| Type | Subcategory | Values | Example | Display |
|---|---|---|---|---|
| Categorical | Nominal | Named categories, no order | Car colour | Pie/bar chart |
| Categorical | Ordinal | Named categories, ordered | Survey rating | Bar chart |
| Numerical | Discrete | Counted, whole numbers | Goals scored | Dot plot, stem plot |
| Numerical | Continuous | Measured, any value in range | Body mass | Histogram, boxplot |
The type of data determines which graphs are appropriate:
EXAM TIP: A common VCAA question asks you to identify the data type. Always look at whether it’s measured (continuous) or counted (discrete), and whether it’s a category or a number.
COMMON MISTAKE: Treating shoe size as continuous — it’s actually discrete (comes in whole/half sizes). Always think about whether values in between make sense.