Get startedGet started for free

EDA of relationship of teaching & "beauty" scores

The researchers in the UT Austin created a "beauty score" by asking a panel of 6 students to rate the "beauty" of all 463 instructors. They were interested in studying any possible impact of "beauty" of teaching evaluation scores. Let's do an EDA of this variable and its relationship with teaching score.

From now on, assume that ggplot2, dplyr, and moderndive are all available in your workspace unless you're told otherwise.

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.

# Plot the histogram
___(evals, ___) +
  ___ +
  labs(x = "Beauty score", y = "count")
Edit and Run Code