buildgls {buildmer} | R Documentation |
Use buildmer
to fit generalized-least-squares models using gls
from nlme
Description
Use buildmer
to fit generalized-least-squares models using gls
from nlme
Usage
buildgls(formula, data = NULL, buildmerControl = buildmerControl())
Arguments
formula |
See the general documentation under |
data |
See the general documentation under |
buildmerControl |
Control arguments for buildmer — see the general documentation under |
Details
A workaround is included to prevent an error when the model matrix is of less than full rank. The summary output of such a model will look a bit strange!
See Also
Examples
library(buildmer)
library(nlme)
vowels$event <- with(vowels,interaction(participant,word))
model <- buildgls(f1 ~ timepoint*following,data=vowels,
buildmerControl=list(args=list(correlation=corAR1(form=~1|event))))
[Package buildmer version 2.11 Index]