is_nullmodel | R Documentation |
Checks if model is a null-model (intercept-only), i.e. if the conditional part of the model has no predictors.
is_nullmodel(x)
x |
A model object. |
TRUE
if x
is a null-model, FALSE
otherwise.
model <- lm(mpg ~ 1, data = mtcars)
is_nullmodel(model)
model <- lm(mpg ~ gear, data = mtcars)
is_nullmodel(model)
data(sleepstudy, package = "lme4")
model <- lme4::lmer(Reaction ~ 1 + (Days | Subject), data = sleepstudy)
is_nullmodel(model)
model <- lme4::lmer(Reaction ~ Days + (Days | Subject), data = sleepstudy)
is_nullmodel(model)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.