Learn R Programming

PASWR (version 1.3)

Grades: GPA and SAT Scores

Description

The admissions committee of a comprehensive state university selected at random the records of 200 second semester freshmen. The results, first semester college GPA and SAT scores, are stored in the data frame Grades. Data are used in Example 12.6.

Arguments

Format

A data frame with 200 observations on the following 2 variables:

sat

SAT score

gpa

grade point average

Examples

Run this code
# NOT RUN {
# traditional scatterplot
plot(gpa ~ sat, data = Grades)
# trellis scatterplot
xyplot(gpa ~ sat, data = Grades, type=c("p", "smooth"))

# }

Run the code above in your browser using DataLab