get_call | R Documentation |
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)
m <- lme4::lmer(Sepal.Length ~ Sepal.Width + (1 | Species), data = iris)
get_call(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.