openintro (version 1.7.1)

satGPA: SAT and GPA data

Description

SAT and GPA data for 1000 students at an unnamed college.

Usage

data(satGPA)

Arguments

Format

A data frame with 1000 observations on the following 6 variables.

sex

Gender of the student.

SATV

Verbal SAT percentile.

SATM

Math SAT percentile.

SATSum

Total of verbal and math SAT percentiles.

HSGPA

High school grade point average.

FYGPA

First year (college) grade point average.

References

Data retrieved from

https://www.dartmouth.edu/~chance/course/Syllabi/Princeton96/Class12.html

Data utilized in Chapter 7 of the Open Intro Statistics book: http://www.openintro.org/

Examples

Run this code
# NOT RUN {
data(satGPA)

par(mfrow=2:1)

plot(satGPA$SATSum/2, satGPA$FYGPA)
g <- lm(satGPA$FYGPA ~ I(satGPA$SATSum/2))
summary(g)
abline(g)

plot(satGPA$SATM, satGPA$FYGPA)
g <- lm(satGPA$FYGPA ~ satGPA$SATM)
summary(g)
abline(g)
# }

Run the code above in your browser using DataLab