EDA of relationship of score and rank
Let's perform an EDA of the relationship between an instructor's score and their rank in the evals
dataset. You'll both visualize this relationship and compute summary statistics for each level of rank
: teaching
, tenure track
, and tenured
.
This exercise is part of the course
Modeling with Data in the Tidyverse
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
ggplot(___, aes(___, ___)) +
___ +
labs(x = "rank", y = "score")