thirds: Thirds-based vector division

View source: R/thirds.R

thirdsR Documentation

Thirds-based vector division

Description

Instead of dividing a vector into quartiles, divide into thirds and return values at those points.

Usage

thirds(x_v, na.rm = T)

Arguments

x_v

numeric vector

na.rm

TRUE (default) remove NAs. FALSE - don't remove. returns all NA

Value

vector containing value of min, bottom 3rd, median, top 3rd, and max.

Examples

set.seed(1)
a <- sample(1:1000, size = 100)
b <- sample(1:100000, size = 1000)
thirds(a)
thirds(b)

weshorton/wrh.rUtils documentation built on Feb. 6, 2025, 5:30 a.m.