Get the value at the intercept
Returns the value at the intercept (i.e., the intercept parameter), and NA
if there isn't one.
get_intercept(x, ...)
x |
A model. |
... |
Not used. |
The value of the intercept.
get_intercept(lm(Sepal.Length ~ Petal.Width, data = iris)) get_intercept(lm(Sepal.Length ~ 0 + Petal.Width, data = iris)) if (require("lme4")) { get_intercept(lme4::lmer(Sepal.Length ~ Sepal.Width + (1 | Species), data = iris)) } if (require("gamm4")) { get_intercept(gamm4::gamm4(Sepal.Length ~ s(Petal.Width), data = iris)) }
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.