table.b1 {MPV} | R Documentation |
The table.b1
data frame has 28 observations on National
Football League 1976 Team Performance.
data(table.b1)
This data frame contains the following columns:
Montgomery, D.C., Peck, E.A., and Vining, C.G. (2001) Introduction to Linear Regression Analysis. 3rd Edition, John Wiley and Sons.
data(table.b1) attach(table.b1) y.lm <- lm(y ~ x2 + x7 + x8) summary(y.lm) # over-all F-test: y.null <- lm(y ~ 1) anova(y.null, y.lm) # partial F-test for x7: y7.lm <- lm(y ~ x2 + x8) anova(y7.lm, y.lm) detach(table.b1)