is_outlier {lvmisc} | R Documentation |
Check whether value is outlier
Description
is_outlier
returns a logical vector indicating whether a value is an
outlier based on the rule of 1.5 times the interquartile range above the
third quartile or below the first quartile.
Usage
is_outlier(x, na.rm = FALSE)
Arguments
x |
A numerical vector |
na.rm |
A logical value indicating whether |
Value
A logical vector.
See Also
stats::IQR()
,
stats::quantile()
Examples
x <- c(1:8, NA, 15)
is_outlier(x, na.rm = TRUE)
[Package lvmisc version 0.1.2 Index]