Standardized test scores and GPAs for 1000 students.
A data frame with 1000 observations on the following 6 variables.
- ACT
ACT score
- SAT
SAT score
- grad
has the student graduated from college?
- gradGPA
college GPA at graduation
- hsGPA
high
school GPA
- cohort
year of graduation or expected graduation
Examples
data(Students)
#> Warning: data set ‘Students’ not found
gf_point(ACT ~ SAT, data = Students)
#> Warning: Removed 799 rows containing missing values (`geom_point()`).
gf_point(gradGPA ~ hsGPA, data = Students)
#> Warning: Removed 279 rows containing missing values (`geom_point()`).