Week 17- Content Flashcards

1
Q

What assumptions do we need to think about and identify

A

> validity
measurement
generalizability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do we estimate the association between two variables?

A

model <- lm(mean.acc ~ SHIPLEY,
data = studytwo)
summary(model)

lm- creates a linear regression model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What outcomes do we have to look at for lm(mean.acc ~ SHIPLEY …) and why are they helpful

A

Slope and intercept

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you calculate a predicted outcome value?

A

Y = intercept + slope x vocabulary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the linear model allow us to predict?

A

The average outcome we can expect given any value of the predictor

How well did you know this?
1
Not at all
2
3
4
5
Perfectly