Nfldraft {BSDA}R Documentation

Rating, time in 40-yard dash, and weight of top offensive linemen in the 1994 NFL draft

Description

Data for Exercises 9.10 and 9.16

Usage

Nfldraft

Format

A data frame with 29 observations on the following 3 variables.

Rating
a numeric vector
forty
a numeric vector
weight
a numeric vector

Source

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury

Examples

str(Nfldraft)
attach(Nfldraft)
plot(forty,Rating)
model <- lm(Rating~forty)
abline(model)
anova(model)
summary(model)
detach(Nfldraft)

[Package BSDA version 0.1 Index]