SIQR | R Documentation |
Calculate semi-interquartile range, using IQR or fivenum.
SIQR(X, mode)
X |
a numeric vector. |
mode |
If 1, using fivenum, otherwise using IQR function. Default is 1. |
A numeric vector of length 1, giving the semi-interquartile range.
Minato Nakazawa minatonakazawa@gmail.com https://minato.sip21c.org/
data <- rnorm(100, 10, 1)
SIQR(data)
SIQR(data, 2)
sd(data)
idata <- sample(50:80, 100, replace=TRUE)
SIQR(idata)
SIQR(idata, 2)
sd(idata)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.