This method wraps tidy.lm()
.
# S3 method for glmRob tidy(x, ...)
x | A |
---|---|
... | Arguments passed on to
|
A tibble::tibble()
with one row for each term in the
regression. The tibble has columns:
The name of the regression term.
The estimated value of the regression term.
The standard error of the regression term.
The value of a statistic, almost always a T-statistic, to use in a hypothesis that the regression term is non-zero.
The two-sided p-value associated with the observed statistic.
The low end of a confidence interval for the regression
term. Included only if conf.int = TRUE
.
The high end of a confidence interval for the regression
term. Included only if conf.int = TRUE
.
Which response column the coefficients correspond to (typically Y1, Y2, etc)
For tidiers for robust models from the MASS package see
tidy.rlm()
.
robust::glmRob()
Other robust tidiers: augment.glmRob
,
augment.lmRob
, glance.glmRob
,
glance.lmRob
, tidy.lmRob
library(robust)#> Error in library(robust): there is no package called ‘robust’m <- lmRob(mpg ~ wt, data = mtcars)#> Error in lmRob(mpg ~ wt, data = mtcars): could not find function "lmRob"tidy(m)#> Error in tidy(m): object 'm' not foundaugment(m)#> Error in augment(m): object 'm' not foundglance(m)#> Error in glance(m): object 'm' not foundgm <- glmRob(am ~ wt, data = mtcars, family = "binomial")#> Error in glmRob(am ~ wt, data = mtcars, family = "binomial"): could not find function "glmRob"glance(gm)#> Error in glance(gm): object 'gm' not found