Tidy summarizes information about the components of a model. A model component might be a single term in a regression, a single hypothesis, a cluster, or a class. Exactly what tidy considers to be a model component varies across models but is usually self-evident. If a model has several distinct types of components, you will need to specify which components to return.
# S3 method for speedglm tidy(x, conf.int = FALSE, conf.level = 0.95, exponentiate = FALSE, ...)
| x | A |
|---|---|
| conf.int | Logical indicating whether or not to include a confidence
interval in the tidied output. Defaults to |
| conf.level | The confidence level to use for the confidence interval
if |
| exponentiate | Logical indicating whether or not to exponentiate the
the coefficient estimates. This is typical for logistic and multinomial
regressions, but a bad idea if there is no log or logit link. Defaults
to |
| ... | Additional arguments. Not used. Needed to match generic
signature only. Cautionary note: Misspelled arguments will be
absorbed in |
Other speedlm tidiers:
augment.speedlm(),
glance.speedglm(),
glance.speedlm(),
tidy.speedlm()
A tibble::tibble() with columns:
Upper bound on the confidence interval for the estimate.
Lower bound on the confidence interval for the estimate.
The estimated value of the regression term.
The two-sided p-value associated with the observed statistic.
The value of a T-statistic to use in a hypothesis that the regression term is non-zero.
The standard error of the regression term.
The name of the regression term.
library(speedglm) clotting <- data.frame( u = c(5, 10, 15, 20, 30, 40, 60, 80, 100), lot1 = c(118, 58, 42, 35, 27, 25, 21, 19, 18) ) fit <- speedglm(lot1 ~ log(u), data = clotting, family = Gamma(log)) tidy(fit)#> # A tibble: 2 x 5 #> term estimate std.error statistic p.value #> <chr> <dbl> <dbl> <dbl> <dbl> #> 1 (Intercept) 5.50 0.190 28.9 0.0000000152 #> 2 log(u) -0.602 0.0553 -10.9 0.0000122glance(fit)#> # A tibble: 1 x 8 #> null.deviance df.null logLik AIC BIC deviance df.residual nobs #> <dbl> <int> <dbl> <dbl> <dbl> <dbl> <int> <int> #> 1 3.51 8 -26.2 58.5 59.1 0.163 7 9