Types of Data (Numeric and Categorical)

Context: FIT1043_MOC · the foundation that dictates which chart and which statistic are valid · four basic types

Quick Revision

  • 🎯 Objective: classify a variable as numeric (discrete/continuous) or categorical (nominal/ordinal) âž” this choice drives every downstream method.
  • ⚡ Key Constraint: the split is numeric vs categorical first, then enumerable-vs-real / ordered-vs-unordered — a wrong classification picks the wrong chart or statistic.

📝 Core

  • Numeric–Discrete âž” numeric but enumerable (countable) values, e.g. number of live births, age in whole years.
  • Numeric–Continuous âž” numeric, not enumerable (real numbers), e.g. weight, height, distance from CBD.
  • Categorical–Nominal âž” discrete values with no inherent ordering, e.g. country, state, gender.
  • Categorical–Ordinal âž” discrete values with an ordering, e.g. education status, disease-progression stage.

⚠️ Common Mistakes

  • đź’ˇ Numbers can be categorical âž” a coded state (0/1) is nominal, not numeric; don’t average a code.
  • đź’ˇ Ordinal ≠ numeric âž” ordered categories have rank but not meaningful arithmetic (the “gap” between stages isn’t fixed).

đź§  Active Recall