Week 2: Data Handling and Descriptive Statistics in R

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Theoretical Constructs

Unobservable psychological entities (e.g., attitudes, beliefs).

2
New cards

Measures

Tools used to elicit data about a construct (e.g., survey items).

3
New cards

Data (Observations)

What is obtained when a measure is used.

4
New cards

Operationalization

Relates a 'construct' to a 'measure'.

5
New cards

Measurement

Relates 'measures' to 'observations'.

6
New cards

Nominal/Categorical

Values have no relationship or meaningful numbering (e.g., colors).

7
New cards

Ordinal

Natural ordering, but differences between values are not meaningful (e.g., rankings).

8
New cards

Interval

Natural ordering, and differences are meaningful, but ratios are not (e.g., temperature in Celsius).

9
New cards

Ratio

Natural ordering, zero means zero, and both differences and ratios are meaningful (e.g., height).

10
New cards

Discrete Variables

Values come in specific categories with no values in between (e.g., year).

11
New cards

Continuous Variables

Values vary smoothly with possible values in between (e.g., age).

12
New cards

Descriptive Statistics

Describes a specific dataset without drawing broader conclusions.

13
New cards

Mean

Sum of data points divided by N (e.g., mean(gdata$age) or sum(gdata$age)/length(gdata$age)). Use na.rm=TRUE to handle missing data (NA).

14
New cards

Mode

Most common point(s), usually for nominal data (e.g., modeOf(), maxFreq()).

15
New cards

Median

The halfway point (50th percentile) (e.g., median(gdata$age) or quantile(gdata$age, 0.5)).

16
New cards

Range

Difference between maximum and minimum values (e.g., max(gdata$age) - min(gdata$age) or range(gdata$age) - range(gdata$age)).

17
New cards

Interquartile Range (IQR)

The middle half of the data (e.g., quantile(gdata$age, c(0.25,0.75))).

18
New cards

Standard Deviation (SD)

How far data points are from the center (e.g., sd(gdata$age)).