I would like to build a model with ggplot2. I appreciated the robust variance-covariance matrix that I would like to use in estimating the confidence interval.
Can I tell ggplot2 to use my VCOV, or, alternatively, can I somehow make sched.lm use my VCOV matrix? An example of a dummy example:
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)
It would be relatively easy to add to ggplot if I could get the βcorrectβ predictions, given my extended VCOV matrix.
source share