re2mgcv | R Documentation |
Convert lme4 random-effect terms to mgcv 're' smooths
re2mgcv(formula, data, drop = TRUE)
formula |
The lme4 formula. |
data |
The data. |
drop |
Logical indicating whether constant, non-intercept columns should be dropped. Default |
library(buildmer)
re <- re2mgcv(temp ~ angle + (1|replicate) + (1|recipe),lme4::cake)
model <- buildgam(re$formula,re$data)
# note: the below does NOT work, as the dependent variable is looked up in the data by name!
re <- re2mgcv(log(Reaction) ~ Days + (Days|Subject),lme4::sleepstudy)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.