LoslegenKostenlos loslegen

Computing fitted/predicted values & residuals

Now say you want to repeat this for all 463 instructors in evals. Doing this manually as you just did would be long and tedious, so as seen in the video, let's automate this using the get_regression_points() function.

Furthemore, let's unpack its output.

Diese Übung ist Teil des Kurses

Modeling with Data in the Tidyverse

Kurs anzeigen

Interaktive Übung

Vervollständige den Beispielcode, um diese Übung erfolgreich abzuschließen.

# Fit regression model
model_score_2 <- lm(score ~ bty_avg, data = evals)

# Get regression table
___(___)

# Get all fitted/predicted values and residuals
___(___)
Code bearbeiten und ausführen