thirds | R Documentation |
Instead of dividing a vector into quartiles, divide into thirds and return values at those points.
thirds(x_v, na.rm = T)
x_v |
numeric vector |
na.rm |
TRUE (default) remove NAs. FALSE - don't remove. returns all NA |
vector containing value of min, bottom 3rd, median, top 3rd, and max.
set.seed(1)
a <- sample(1:1000, size = 100)
b <- sample(1:100000, size = 1000)
thirds(a)
thirds(b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.