Learn R Programming

insight (version 0.19.11)

get_intercept: Get the value at the intercept

Description

Returns the value at the intercept (i.e., the intercept parameter), and NA if there isn't one.

Usage

get_intercept(x, ...)

Value

The value of the intercept.

Arguments

x

A model.

...

Not used.

Examples

Run this code
get_intercept(lm(Sepal.Length ~ Petal.Width, data = iris))
get_intercept(lm(Sepal.Length ~ 0 + Petal.Width, data = iris))

get_intercept(lme4::lmer(Sepal.Length ~ Sepal.Width + (1 | Species), data = iris))
if (FALSE) { # require("gamm4")
get_intercept(gamm4::gamm4(Sepal.Length ~ s(Petal.Width), data = iris))
}

Run the code above in your browser using DataLab