elmhurst | R Documentation |
A random sample of 50 students gift aid for students at Elmhurst College.
elmhurst
A data frame with 50 observations on the following 3 variables.
Family income of the student.
Gift aid, in $1000s.
Price paid by the student (tuition - gift aid).
These data were sampled from a table of data for all freshman from the 2011 class at Elmhurst College that accompanied an article titled What Students Really Pay to Go to College published online by The Chronicle of Higher Education: https://www.chronicle.com/article/what-students-really-pay-to-go-to-college/?sra=true.
library(ggplot2)
library(broom)
ggplot(elmhurst, aes(x = family_income, y = gift_aid)) +
geom_point() +
geom_smooth(method = "lm")
mod <- lm(gift_aid ~ family_income, data = elmhurst)
tidy(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.