Flag outliers based on the median absolute deviation
Usage
outliers_by_mad(x, threshold = 3, direction = c("both", "low", "high"))
Examples
x <- c(1, 1, 2, 2, 4, 6, 11)
outliers_by_mad(x)
#> [1] FALSE FALSE FALSE FALSE FALSE FALSE TRUE
# Using direction="low" disregards outliers above threshold, for example
outliers_by_mad(x, direction="low")
#> [1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE