我想用 ggplot2 绘制一个模型。我已经估计了一个稳健的方差-协方差矩阵,我想在估计置信区间时使用它。
我可以告诉 ggplot2 使用我的 VCOV,或者,我可以以某种方式强制 predict.lm 使用我的 VCOV 矩阵吗?一个虚拟的例子:
source("http://people.su.se/~ma/clmclx.R")
df <- data.frame(x1 = rnorm(100), x2 = rnorm(100), y = rnorm(100), group = as.factor(sample(1:10, 100, replace=T)))
lm1 <- lm(y ~ x1 + x2, data = df)
coeftest(lm1)
## outputs coef.test, but can be modified to output VCOV
clx(lm1, 1, df$group)
如果给定我的增强 VCOV 矩阵,我可以得到“正确”的预测,那么添加到 ggplot 会相对容易。