gpt4 book ai didi

r - 使用其他自变量的所有可能组合获取许多模型中特定变量的 p 值

转载 作者:行者123 更新时间:2023-12-02 11:03:06 27 4
gpt4 key购买 nike

我正在尝试使用一组自变量的所有可能组合来运行许多回归模型。

在此示例中,我对 cyl 的系数以及 xlist 中列出的其他变量的所有可能组合感兴趣。

df <- mtcars
md <- "mpg ~ cyl"
xlist <- c("disp", "hp", "am")
n <- length(xlist)
# get a list of all possible combinations of xlist
comb_lst <- unlist(lapply(1:n, function(x) combn(xlist, x, simplify=F)), recursive = F)
# get a list of all models
md_lst <- lapply(comb_lst, function(x) paste(md, "+", paste(x, collapse = "+")))
# run those models and obtain coefficients for cyl
coefs <- unlist(lapply(md_lst, function(x) lm(as.formula(x),data=df)$coe[2]))

获取cyl的所有系数效果很好。但是,我不知道如何获得与每个系数对应的 p 值。

pvalues <- lapply(md, function(x) lm(as.formula(x),data=df)$?[2]))

如有任何建议,我们将不胜感激。

最佳答案

使用no包计算cyl每个系数的简单方法:

pvalues <- lapply(md_lst, function(x) summary(lm(as.formula(x),data=df))$coefficients[,4])

[[1]]
(Intercept) cyl disp
4.022869e-14 3.366495e-02 5.418572e-02

[[2]]
(Intercept) cyl hp
1.620660e-16 4.803752e-04 2.125285e-01

[[3]]
(Intercept) cyl am
7.694408e-14 1.284560e-07 5.635445e-02

[[4]]
(Intercept) cyl disp hp
1.537198e-13 1.349044e-01 8.092901e-02 3.249519e-01

[[5]]
(Intercept) cyl disp am
2.026114e-12 2.823412e-02 1.544849e-01 1.610559e-01

[[6]]
(Intercept) cyl hp am
9.270924e-12 8.635578e-02 1.692706e-02 5.464020e-03

[[7]]
(Intercept) cyl disp hp am
3.724625e-11 2.800850e-01 4.760672e-01 4.416647e-02 2.520516e-02

对所有内容使用broom::glance:

pvalues <- lapply(md_lst, function(x) glance(summary(lm(as.formula(x),data=df)))$p.value)

[[1]]
[1] 1.057904e-09

[[2]]
[1] 3.161781e-09

[[3]]
[1] 1.093687e-09

[[4]]
[1] 5.053802e-09

[[5]]
[1] 3.060153e-09

[[6]]
[1] 4.790959e-10

[[7]]
[1] 2.540038e-09

关于r - 使用其他自变量的所有可能组合获取许多模型中特定变量的 p 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58213038/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com