powered by
The table.b4 data frame has 24 observations on property valuation.
table.b4
data(table.b4)
This data frame contains the following columns:
sale price of the house (in thousands of dollars)
taxes (in thousands of dollars)
number of baths
lot size (in thousands of square feet)
living space (in thousands of square feet)
number of garage stalls
number of rooms
number of bedrooms
age of the home (in years)
number of fireplaces
Narula, S.C. and Wellington (1980) Prediction, Linear Regression and Minimum Sum of Relative Errors. Technometrics, 19, 1977.
data(table.b4) attach(table.b4) y.lm <- lm(y ~ x1 + x2 + x3 + x4 + x5 + x6 + x7 + x8 + x9) summary(y.lm) detach(table.b4)
Run the code above in your browser using DataLab