sigTests {melt} | R Documentation |
Extracts the results of significance tests from a model.
## S4 method for signature 'LM'
sigTests(object, ...)
object |
An object that inherits from LM. |
... |
Further arguments passed to methods. |
The form of the value returned by sigTests()
depends on the
class of its argument.
sigTests(LM)
: Extracts a list with the optimization results of
significance tests.
data("mtcars")
fit <- el_lm(mpg ~ ., data = mtcars)
sigTests(fit)