Last Update: February 21, 2022
Coefficient of Determination in R can be estimated using stats
package lm
, summary.lm
functions and r.squared
, adj.r.squared
values to fit linear regression and print its summary results, estimated coefficients of determination. Main parameters within lm
function are formula
with y ~ x1 + … + xp
model description and data
with data.frame
object including model variables. Main parameter within summary.lm
function is object
with previously fitted lm
model.
As example, we can estimate coefficients of multiple determination from multiple linear regression of house price explained by its lot size and number of bedrooms using data included within AER
package HousePrices
object [1].
First, we load package AER
for data [2].
In [1]:
library(AER)
Second, we create HousePrices
data object from AER
package using data
function and print first six rows and three columns of data using head
function to view data.frame
structure.
In [2]:
data(HousePrices)
head(HousePrices[,1:3])
Out [2]:
price lotsize bedrooms
1 42000 5850 3
2 38500 4000 2
3 49500 3060 3
4 60500 6650 3
5 61000 6360 2
6 66000 4160 3
Third, we fit model with lm
function using variables within HousePrices
data object and store outcome within mlr
object. Within lm
function, parameter formula = price ~ lotsize + bedrooms
fits model where house price is explained by its lot size and number of bedrooms.
In [3]:
mlr <- lm(formula = price ~ lotsize + bedrooms, data = HousePrices)
Fourth, we can print mlr
model summary results which include estimated coefficients of multiple determination using summary.lm
function.
In [4]:
summary.lm(mlr)
Out [4]:
Call:
lm(formula = price ~ lotsize + bedrooms, data = HousePrices)
Residuals:
Min 1Q Median 3Q Max
-65665 -12498 -2075 8970 97205
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 5.613e+03 4.103e+03 1.368 0.172
lotsize 6.053e+00 4.243e-01 14.265 < 2e-16 ***
bedrooms 1.057e+04 1.248e+03 8.470 2.31e-16 ***
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 21230 on 543 degrees of freedom
Multiple R-squared: 0.3703, Adjusted R-squared: 0.3679
F-statistic: 159.6 on 2 and 543 DF, p-value: < 2.2e-16
Fifth, we can also store model summary results within smlr
object using summary.lm
function and print its r.squared
, adj.r.squared
values with estimated coefficients of multiple determination.
In [5]:
smlr <- summary.lm(mlr)
smlr$r.squared
Out [5]:
[1] 0.3702693
In [6]:
smlr$adj.r.squared
Out [6]:
[1] 0.3679499
Courses
My online courses are hosted at Teachable website.
For more details on this concept, you can view my Linear Regression in R Course.
References
[1] Data Description: Sales prices of houses sold in the city of Windsor, Canada, during July, August and September, 1987.
Original Source: Anglin, P., and Gencay, R. (1996). Semiparametric Estimation of a Hedonic Price Function. Journal of Applied Econometrics, 11, 633–648.
[2] AER R Package. Christian Kleiber and Achim Zeileis. (2008). Applied Econometrics with R. Springer-Verlag, New York.