basic_stats 1.0.0

Lightweight library with basic statistical estimators and hypothesis tests.
Documentation
CORE
----

> x <- c(14., 15., 15., 15., 16., 18., 22., 23., 24., 25., 25.)

> length(x)
[1] 11

> sum(x)
[1] 212

> x2 <- x * x
> sum(x2)
[1] 4290

> var(x)
[1] 20.41818

> sd(x)
[1] 4.518648

> min(x)
[1] 14

> max(x)
[1] 25