CommencerCommencer gratuitement

Interpreting the school model

Previously, you built a model to predict students' gains in math knowledge. Now, you will extract and examine the coefficients from the model.

These coefficient estimates include uncertainty and 95% confidence interval (CI) captures this uncertainty. If a parameter's 95% confidence interval does not include zero, then the parameter is likely statistically different from zero. The DataCamp course, Foundations of Inference, covers models interpretation in greater detail.

Cet exercice fait partie du cours

Hierarchical and Mixed Effects Models in R

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Extract coefficents
___ <-
    tidy(___, conf.int = ___)

# Print coefficents
print(___)
Modifier et exécuter le code