Get the model's function call
Returns the model's function call when available.
get_call(x)
x |
A fitted mixed model. |
A function call.
data(mtcars) m <- lm(mpg ~ wt + cyl + vs, data = mtcars) get_call(m) if (require("lme4")) { m <- lmer(Sepal.Length ~ Sepal.Width + (1 | Species), data = iris) get_call(m) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.