Linear Regression

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

1/20

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.

21 Terms

1
New cards

What are the three aspects of statistical relationships discussed in correlation?

Form, strength, and direction.

2
New cards

What does the linear form of a relationship mean?

A straight line (regression line) can represent how the variables relate.

3
New cards

What statistic quantifies the strength of a linear relationship?

Pearson product-moment correlation coefficient (r).

4
New cards

What does the sign (+/−) of the correlation coefficient indicate?

The direction of the relationship (positive or negative), not its strength.

5
New cards

What does a positive relationship look like on a scatterplot?

Points slope upward from left to right.

6
New cards

What does a negative relationship look like on a scatterplot?

Points slope downward from left to right.

7
New cards

What is regression used for?

Prediction — predicting values of one variable (Y) from another (X).

8
New cards

What are the two components of a regression line?

Slope (β₁) and intercept (β₀).

9
New cards

What does the slope (β₁) represent in regression?

The expected change in Y for a one-unit increase in X.

10
New cards

What does the intercept (β₀) represent?

The predicted value of Y when X = 0.

11
New cards

What is the formula for the simple linear regression model?

Yi​=β0​+β1​Xi​+εi

12
New cards

What is the predicted value formula in regression?

Y^i​=β0​+β1​Xi

13
New cards

What is a residual (εᵢ) in regression?

The difference between actual and predicted Y values: Yi−Y^iYi​−Y^i

14
New cards

How do you calculate the slope (β₁)?

β1​=Scp ∑(Xi​−Xˉ)(Yi​−Yˉ)​

———- = ————————

SsX ∑(Xi​−Xˉ)2​​

15
New cards

How do you calculate the intercept (β₀)?

β0​=Yˉ−β1​Xˉ

16
New cards

What does model fit mean in regression?

How well the regression model represents the actual data.

17
New cards

What two methods are used to assess regression model fit?

ANOVA and R² (coefficient of determination).

18
New cards

What does R² represent?

The proportion of total variance in Y explained by the regression model.

19
New cards

How do you calculate R²?

R2=​SSREG​​

——————-

SSTOTAL

Or square the correlation r if only one predictor is used.

20
New cards

What is the formula for the F-ratio in regression ANOVA?

F=MSREG SSREG/dfREG

————— = ———————

MSRES SSRES/dfRES​​

21
New cards

How are the degrees of freedom partitioned in regression?

  • dfTOTAL=N−1

  • dfREG=K

  • dfRES=N−K−1

Where K = number of predictors.