gpt4 book ai didi

r - 如何制作R中回归估计量线性组合的置信区间?

转载 作者:行者123 更新时间:2023-12-04 11:00:42 24 4
gpt4 key购买 nike

在这个回归中:

enter image description here

我知道 confit()从包 glht 可以做每个估计的置信区间。

但是如何制作系数线性组合的置信区间,
例如R中β3+2*β5的置信区间?

添加了这个

enter image description here

最佳答案

你可以用 linearHypothesis 做到这一点在 car包裹:

library(car)

dat <- data.frame(
y = rnorm(100),
x1 = rnorm(100),
x2 = rnorm(100)
)

fit <- lm(y ~ x1 + x2, data = dat)

# enter linear hypothesis as a matrix
linearHypothesis(fit, t(c(0,2,2)), 0)
# enter linear hypothesis as a string
linearHypothesis(fit, "2*x1 + 2*x2 = 0")

或与 glhtmultcomp包,它还提供了线性组合的置信区间:
library(multcomp)

lh <- glht(fit, linfct = t(c(0,2,2)))
confint(lh)
# Linear Hypotheses:
# Estimate lwr upr
# 1 == 0 0.1258 -0.4398 0.6914

关于r - 如何制作R中回归估计量线性组合的置信区间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58817973/

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