我使用以下结果进行了逻辑回归:
ssi.logit.single.age["coefficients"]
# $coefficients
# (Intercept) age
# -3.425062382 0.009916508
我需要选择age
的系数,目前我使用以下代码:
ssi.logit.single.age["coefficients"][[1]][2]
它有效,但我不喜欢这里的神秘代码,我可以使用系数的名称(即(Intercept)
或age
)
答案 0 :(得分:20)
有一个名为coef
的提取函数可以从模型中获取系数:
coef(ssi.logit.single.age)["age"]
答案 1 :(得分:5)
我从here
找到了它查看summary()
生成的数据结构> names(summary(lm.D9))
[1] "call" "terms" "residuals" "coefficients"
[5] "aliased" "sigma" "df" "r.squared"
[9] "adj.r.squared" "fstatistic" "cov.unscaled"
现在看一下摘要中系数的数据结构:
> summary(lm.D9)$coefficients
Estimate Std. Error t value Pr(>|t|)
(Intercept) 5.032 0.2202177 22.850117 9.547128e-15
groupTrt -0.371 0.3114349 -1.191260 2.490232e-01
> class(summary(lm.D9)$coefficients)
[1] "matrix"
> summary(lm.D9)$coefficients[,3]
(Intercept) groupTrt
22.850117 -1.191260