Week 9: Correlations and Introduction to Regression

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

1/18

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.

19 Terms

1
New cards

Pearson Correlation (r)

Measures the strength and direction of a linear relationship between two numeric variables.

2
New cards

Spearman's Rho (ρ)

A non-parametric correlation similar to Pearson's but does not assume a linear relationship; measures the strength and direction of a monotonic relationship.

3
New cards

Linear Regression

A tool for describing relationships between multiple interval scale (numeric) variables, with one outcome and one or more predictors.

4
New cards

Regression Line

The 'best fit' line through data points.

5
New cards

Regression Model

Acknowledges random variation in data in addition to the regression line.

6
New cards

Principle of 'Least Squares'

The 'best fit' regression line is the one that minimizes the sum of squared deviations between predictions and actual values; this is also called the residual sum of squares.

7
New cards

lm() function

Estimates the values of the intercept (b0) and slopes (b1, etc.) in R.

8
New cards

summary() function

Runs hypothesis tests on the lm object in R.

9
New cards

Multiple Regression

Involves two or more predictor variables.

10
New cards

Interaction Terms

Describe how the relationship between an outcome and one predictor changes depending on the level of another predictor.

11
New cards

Positive Interaction

Y is high when predictors have the same sign (both high or both low).

12
New cards

Negative Interaction

Y is low when predictors have the same sign (both high or both low).

13
New cards

Formula syntax for interaction

outcome ~ predictor1 * predictor2 or outcome ~ predictor1 + predictor2 + predictor1:predictor2.

14
New cards

Null Hypothesis in Regression

No regression line; no relationship between predictors and outcome.

15
New cards

Model Sum of Squares (SSm)

Difference between regression line predictions and mean Y.

16
New cards

Residual Sum of Squares (SSr)

Difference between data and regression line predictions.

17
New cards

Testing Specific Predictor Significance

Uses t-tests for each predictor to test the null hypothesis that a specific predictor has no relationship to the outcome.

18
New cards

Effect Size Measure

How well the overall regression model accounts for the outcome variable, depending on variance accounted for by the model vs. total variance.

19
New cards

Standardized Regression Coefficients

Used when scales are not standardized; standardCoefs() function (from lsr package).