predict.aov1r {AOV1R} | R Documentation |
Prediction interval for the one-way random effect ANOVA model, based on a Satterthwaite approximation of the degrees of freedom.
## S3 method for class 'aov1r'
predict(object, level = 0.95, ...)
object |
an output of |
level |
confidence level |
... |
ignored |
A vector of length two, the bounds of the prediction interval.
T. Y. Lin, C. T. Liao. Prediction intervals for general balanced linear random models. Journal of Statistical Planning and Inference 138 (2008), 3164 – 3175. <doi:10.1016/j.jspi.2008.01.001>
dat <- simAOV1R(I=2, J=3, mu=10, sigmab=1, sigmaw=1)
fit <- aov1r(y ~ group, data=dat)
predict(fit)