View source: R/summarise_boxplot_stats.R
summarise_boxplot_stats | R Documentation |
Computes the five-number summary (min, Q1, median, Q3, max), interquartile range (IQR), range, and outliers for each numeric variable in a data frame or a numeric vector.
summarise_boxplot_stats(x)
x |
A numeric vector, matrix, data frame, or tibble. |
A tibble with columns: 'variable', 'min', 'q1', 'median', 'q3', 'max', 'iqr', 'range', 'n_outliers', 'outliers'.
summarise_boxplot_stats(iris)
summarise_boxplot_stats(iris$Sepal.Width)
summarise_boxplot_stats(data.frame(a = c(rnorm(98), 10, NA)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.