Intro to Quarto

Author

Luke Peterson

Intro to College Scorecard

The college scorecard is a project from the department of education that records data on post-

secondary forms of education in the United States

scorecard <- read_csv("https://asayanalytics.com/scorecard_clean-csv")

Distribution of UGDS

This is a univariate distribution of the number of undergraduate students attending an institution

view(scorecard)
scorecard %>%
  ggplot(aes(x=UGDS)) +
  geom_histogram()

The count of undergrads attending an institution is significantly skewed right