View source: R/plot.ranef.mjoint.R
plot.ranef.mjoint | R Documentation |
ranef.mjoint
objectDisplays a plot of the BLUPs and approximate 95% prediction interval for each subject.
## S3 method for class 'ranef.mjoint'
plot(x, ...)
x |
an object inheriting from class |
... |
additional arguments; currently none are used. |
an object inheriting from class ggplot
, which displays a
trellis plot with a separate panel for each effect, showing a dotplot (with
optional error bars indicating approximate 95% prediction intervals if the
argument postVar=TRUE
is set in the call to
ranef
) for each subject (by row).
Graeme L. Hickey (graemeleehickey@gmail.com)
Pinheiro JC, Bates DM. Mixed-Effects Models in S and S-PLUS. New York: Springer Verlag; 2000.
ranef.mjoint
.
## Not run:
require(ggplot2)
data(heart.valve)
hvd <- heart.valve[!is.na(heart.valve$log.grad) & !is.na(heart.valve$log.lvmi), ]
set.seed(1)
fit1 <- mjoint(formLongFixed = log.lvmi ~ time,
formLongRandom = ~ time | num,
formSurv = Surv(fuyrs, status) ~ 1,
data = hvd,
timeVar = "time")
plot(ranef(fit1, postVar = TRUE))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.