inst/tinytest/enhances-nlme.R

suppressPackageStartupMessages(library(nlme))

# Make up some data
n <- 10
j <- 3
alpha <- rnorm(n)
ID <- rep(1:n, j)
x <- runif(n*j)
y <- rnorm(n*j, mean=x + alpha[ID], sd=0.5)
df <- data.frame(y=y, x=x, ID=factor(ID))

# Fit and plot
fit <- lme(y ~ x, random = ~1|ID, data=df)
visreg(fit, "x")
visreg(fit, "x", type="contrast")
visreg(fit, "x", by="ID")
lattice::xyplot(y~x|ID, data=df, pch=19) # Note: Not the same as the above!
                                         # Random effects eliminated in visreg
visreg(fit, "x", by="ID", level=1)       # Add the random effects back in
pbreheny/visreg documentation built on March 20, 2024, 1:07 a.m.