Main Content

Lesson 1: Decision Making Under Uncertainty

Types of Variables

Data (at least for the purposes of statistics) fall into two main groups: categorical and quantitative.

Variable

A variable is a characteristic of the chosen sample that needs to be analyzed for decision-making. For example: age, gender, household income, number of children, average sale, time spent on social media,

Classifying Variables

Quantitative

Numerical values with magnitudes that can be placed in meaningful order with consistent intervals, also known as numerical or measurement variables.

Discrete
Numerical data that can be counted:
  • age
  • number of production plants
  • number of employees
Continuous
Numerical data that is a continuous measurement:
  • salary ($ usually considered continuous)
  • experience (may also be considered discrete; depends on precision in measurement)

Categorical

Names or labels (i.e., categories) with no logical order or with a logical order but inconsistent differences between groups, also known as qualitative.

  •  For example, responses to questions about marital status, coded as: Single = 1, Married = 2, Divorced = 3, Widowed = 4
Nominal Data
Nominal data are qualitative responses coded in numbers.

Arithmetic operations don’t make any sense (e.g., does Widowed ÷ 2 = Married?).

Ordinal Data

Ordinal data appear to be categorical in nature, but their values have an order or ranking.

  • For example, Amazon reviews: Poor = 1, Fair = 2, Good = 3, Very Good = 4, Excellent = 5
  • Although it is still not meaningful to do arithmetic on this data (e.g., does 2*fair = very good?!), we can say things like excellent > poor or fair < very good. That is, order is maintained no matter which numeric values are assigned to each category.


Top of page