summary_tidiers {broom} | R Documentation |
For models that have only a single component, the tidy()
and
glance()
methods are identical. Please see the documentation for both
of those methods.
## S3 method for class 'summaryDefault' tidy(x, ...) ## S3 method for class 'summaryDefault' glance(x, ...)
x |
A |
... |
Additional arguments. Not used. Needed to match generic
signature only. Cautionary note: Misspelled arguments will be
absorbed in |
A one-row tibble::tibble with columns:
minimum |
Minimum value in original vector. |
q1 |
First quartile of original vector. |
median |
Median of original vector. |
mean |
Mean of original vector. |
q3 |
Third quartile of original vector. |
maximum |
Maximum value in original vector. |
na |
Number of |
v <- rnorm(1000) s <- summary(v) s tidy(s) glance(s) v2 <- c(v,NA) tidy(summary(v2))