2. scales of measurements of data

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/24

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 10:17 AM on 8/19/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

25 Terms

1
New cards

what is the mean

computing the average

2
New cards

what is the median

the number in the middle (after sorting)

3
New cards

what is the mode

the number with the highest frequency

4
New cards

types of data

  1. nominal

  2. ordinal

  3. interval

  4. ratio


5
New cards

what is nominal data

  • lowest level of measurement

  • discrete categories

  • NO natural order

  • estimating a mean, median or standard deviation, would be meaningless

  • possible measure: mode, frequency distribution


6
New cards

what are the examples of nominal data

  • gender

  • occupation


7
New cards

what is ordinal data

  • ordered categories

  • relative ranking

  • unknown “distance” between categories: orders matters but not the difference between values

  • possible measure: mode, frequency distribution + median


8
New cards

what is the example of ordinal data

  1. very easy

  2. easy

  3. about right

  4. difficult

  5. very difficult


9
New cards

what is interval data

  • ordered categories

  • well-defined ‘unit’ measurement

    • distances between points on the scale are measurable and well-defined

    • can measure differences

  • equal interval (between 2 consecutive unit points)

  • zero is arbitrary (not absolute), in many cases human-defined

    • if the variable equals zero, it does not mean there is of that variable

  • ratio is meaningless

  • possible measure: mode, frequency distribution + median + mean, standard deviation, addition/subtraction


10
New cards

what is an example of interval data

  • temperature measured in celsius

    • eg 10°C, 28°C

  • year of someone’s birth

    • 1990, 2005, 2010, 2022


11
New cards

what is ratio data

  • most precise and highest level of measurement

  • ordered

  • equal intervals

  • natural zeros:

    • if the variable equals zero, it means there is none of that variable

    • not arbitrary

  • possible measure: mode, frequency distribution, median, mean, standard deviation, addition/subtraction + multiplication and division (ratio)


12
New cards

what are examples of ratio data

  • weights

    • 10kg, 20kg, 30kg

  • time

    • 10 seconds, 1 hr, 1 day


13
New cards

what is another way of saying numerical variables

quantitative data

14
New cards

what is another way of saying categorical variables

qualitative data

15
New cards

what are the types of data under categorical data

  • nominal data (unordered categories)

  • ordinal data (ordered categories)


16
New cards

what are the types of data under numerical variables

  • discrete data

  • continuous data

  • interval data

  • ratio data


17
New cards

what is missing data

data that is missing and you do not know the mechanism

18
New cards

what is data wrangling

the process of transforming and mapping data from one “raw” data form into another format with the intent of making it more appropriate and valuable for a variety of downstream purposes such as analytics


19
New cards

what is formatting data

  • binary coding to convert categories into binary form

    • one hot encoding: unify several entities within one vector

      • example: the colour of a pixel can be red, yellow or green

      • very common in classification tasks

  • normalisation

    • linear scaling: scale each variable to [0 1]

    • z-score standardisation: each independent dimension of data is normally distributed


20
New cards

what is data cleaning

the process of detecting and correcting (or remobing) corrupt or inaccurate records from a record set, table or database

21
New cards

what is an example of data cleaning

  • clipping outliers

  • handling missing features


22
New cards

how do you handle missing features

  1. removing the examples with missing features from the dataset

  • can be done if the dataset is big enough so we can sacrifice some training examples

  1. use learning algorithm that can deal with missing feature values

  • example: random forest

  1. using data imputation technique (make something up)


23
New cards

what are the methods for imputation

  1. replace the missing value of a feature by an average value of this feature in the dataset

  2. highlight the missing value

  • replace the missing value with a value outside the normal range of values


24
New cards


what is data integrity

it is the maintenance and the assurance of data accuracy and consistency

  • a critical aspect to the design, implementation, and usage of any system that stores, processes or retrieves data


25
New cards

what are the types of data visualisation

  • distribution

  • bars

  • boxplots