11 - Mixed Models, Multilevel Models, Random Coefficient Regression Models, Hierarchical Linear Modeling, ... Flashcards

1
Q

What data types are commonly used in mixed models?

A

Nested data, repeated measures, longitudinal data

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

If you have one or more independent variables but they are measured for the same group at a single point in time, what regression method should you use?

A

Multiple Linear Regression

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

What are fixed coefficients?

A

Intercepts/ slopes that are assumed to be the same across different contexts.

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

What are random coefficients?

A

Intercepts/ slopes that are allowed to vary across different contexts.

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

Do Ordinary Least Squares Regression Models use fixed or random coefficients?

A

Fixed

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

What is the difference between marginal and conditional R^2?

A

Conditional includes variance explained by fixed and random effects. Marginal includes variance explained by fixed effects only.

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

Does the error account for fixed or random effects?

A

Random

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

What is Interclass Correlation?

A

A measure of the consistency of the data across clusters/ groups.

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

What is the range of values for ICC? Explain them.

A

0 - 1. 0 indicates no consistency, 1 indicates full consistency.

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

What R function do you use to run Mixed Effects Models?

A

lmer() from lme4 package

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

What are the fixed and random effects in: lmer(y ~ pred + (1| pred2)?

A
  • Fixed effects: pred
  • Random effects: (1|pred2)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

How do you specify random effects in R - lmer()?

A

You add it in parentheses in the lmer() function. Arguments:
- Specification of the random effects
- “|”
- Grouping factor

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

What is LogLikelihood?

A

A measure of how well a model fits the data

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

What are the assumptions for Mixed Models?

A
  1. Linearity of the Model
  2. Normality of Residuals
  3. Multicollinearity
  4. Influential Data Points
  5. Independence
How well did you know this?
1
Not at all
2
3
4
5
Perfectly