如何从 r 中的 lm() 函数中提取标准错误
您可以使用以下方法提取残差标准误差以及R中lm()函数的各个回归系数的标准误差:
方法一:提取残差标准误差
#extract residual standard error of regression model
summary(model)$sigma
方法二:提取个体回归系数的标准误差
#extract standard error of individual regression coefficients
sqrt(diag(vcov(model)))
以下示例展示了如何在实践中使用每种方法。
示例:从 R 中的 lm() 中提取标准误差
假设我们在 R 中拟合以下多元线性回归模型:
#create data frame df <- data. frame (rating=c(67, 75, 79, 85, 90, 96, 97), points=c(8, 12, 16, 15, 22, 28, 24), assists=c(4, 6, 6, 5, 3, 8, 7), rebounds=c(1, 4, 3, 3, 2, 6, 7)) #fit multiple linear regression model model <- lm(rating ~ points + assists + rebounds, data=df)
我们可以使用summary()函数来显示回归模型的完整摘要:
#view model summary
summary(model)
Call:
lm(formula = rating ~ points + assists + rebounds, data = df)
Residuals:
1 2 3 4 5 6 7
-1.5902 -1.7181 0.2413 4.8597 -1.0201 -0.6082 -0.1644
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 66.4355 6.6932 9.926 0.00218 **
points 1.2152 0.2788 4.359 0.02232 *
assists -2.5968 1.6263 -1.597 0.20860
rebounds 2.8202 1.6118 1.750 0.17847
---
Significant. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Residual standard error: 3.193 on 3 degrees of freedom
Multiple R-squared: 0.9589, Adjusted R-squared: 0.9179
F-statistic: 23.35 on 3 and 3 DF, p-value: 0.01396
模型的残差标准误差为 3.193,各个回归系数的每个标准误差可以在Std. 中看到。输出错误列。
要从模型中仅提取残差标准误差,我们可以使用以下语法:
#extract residual standard error of regression model
summary(model)$sigma
[1] 3.19339
为了仅提取每个单独回归系数的标准误差,我们可以使用以下语法:
#extract standard error of individual regression coefficients
sqrt(diag(vcov(model)))
(Intercept) points assists rebounds
6.6931808 0.2787838 1.6262899 1.6117911
请注意,这些值与我们之前在回归结果的整个摘要中看到的值相对应。
相关: 如何解释残差标准误差
其他资源
以下教程解释了如何在 R 中执行其他常见任务: