std_ {Qindex} | R Documentation |
Alternative Standardization Methods
Description
Alternative standardization using median, IQR and mad.
Usage
std_IQR(x, na.rm = TRUE, ...)
std_mad(x, na.rm = TRUE, ...)
Arguments
x |
|
na.rm |
logical scalar,
see functions quantile, median and mad.
Default |
... |
Value
Standardize using median and IQR
Function std_IQR returns a numeric vector of the same length as x
.
Standardize using median and mad
Function std_mad returns a numeric vector of the same length as x
.
Examples
std_IQR(rnorm(20))
std_mad(rnorm(20))
[Package Qindex version 0.1.7 Index]