sd_ci: Confidence Interval of Standard Deviation

View source: R/sd_ci.R

sd_ciR Documentation

Confidence Interval of Standard Deviation

Description

Calculates the SD confidence interval of a vector of numbers.

Usage

sd_ci(x, ci = 0.95)

Arguments

x

Numeric vector.

ci

Numeric; confidence level for returned CI.

Value

SD confidence interval (as named vector).

See Also

mean_ci, plot_neat

Examples

myvec = c(11, 15, 19, 43, 53, -4, 34, 8, 33, -1, 54 )
sd_ci( myvec )
sd_ci( myvec, ci = .80 )


neatStats documentation built on Dec. 8, 2022, 1:13 a.m.