View source: R/ols.has.const.R
ols.has.const | R Documentation |
Checks if a linear model included a constant level parameter (alpha).
ols.has.const(mod)
mod |
linear model object of class |
A logical value: TRUE
(has contant) or FALSE
(has no constant).
my.modA = ols(y ~ x, data = data.tip)
my.modB = ols(y ~ 0 + x, data = data.tip)
ols.has.const(my.modA)
ols.has.const(my.modB)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.