EDA Project: High School and Beyond

A histogram of the reading scores. The range of 40-60 seems to be where the majority of the students scored. A density plot will show a better distribution of the scores. ggplot(hsb2, aes(x=read)) + geom_density(col="cyan") + geom_histogram(aes(y=..density..), colour="navy", fill=NA) ## `stat_bin()` using `bins = 30`. ................
................