Get startedGet started for free

Fitting a regression with a categorical x

You'll now fit a regression model with the categorical variable rank as the explanatory variable and interpret the values in the resulting regression table. Note here the rank "teaching" is treated as the baseline for comparison group for the "tenure track" and "tenured" groups.

This exercise is part of the course

Modeling with Data in the Tidyverse

View Course

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Fit regression model
model_score_4 <- lm(___ ~ ___, data = evals)

# Get regression table
___(model_score_4)
Edit and Run Code