`broom::glance.lm()` 提取了什么假设? `summary.lm` 中的 F 统计量是什么?
broom::glance()
使得比较不同模型变得非常容易。由于帮助文件没有指定统计数据或p 值指的是。 正在检验什么假设?
library(broom)
mod <- lm(mpg ~ wt + qsec, data = mtcars)
glance(mod)
#> # A tibble: 1 x 12
#> r.squared adj.r.squared sigma statistic p.value df logLik AIC BIC
#> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
#> 1 0.826 0.814 2.60 69.0 9.39e-12 2 -74.4 157. 163.
#> deviance df.residual nobs
#> <dbl> <int> <int>
#> 1 195. 29 32
由 reprex 包于 2022 年 2 月 24 日创建 (v2.0.1)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
glance.lm()
函数(见下文),该函数从summary.lm()
中提取信息。 F 统计量及其相应的 P 值将当前模型与仅截距模型进行比较 如此处所示。将
glance(mod1)
与summary(mod1)
进行比较时,情况会变得很清楚,因为glance(mod1)
“整理”了摘要,其动机是包(参见小插图)glance.lm()
函数:Looking at the
glance.lm()
function (see below), the function extracts information fromsummary.lm()
. The F-statistic and its corresponding P-value compares the current model to an intercept-only model as indicated here.It becomes clear when comparing
glance(mod1)
tosummary(mod1)
in thatglance(mod1)
"tidies" up the summary as motivated by the package (see vignette)The
glance.lm()
function: