outliers_by_mad | R Documentation |
Flag outliers based on the median absolute deviation
outliers_by_mad(x, threshold = 3, direction = c("both", "low", "high"))
x |
numeric vector |
threshold |
threshold for number of MADs used to determine outlier. default 3 |
direction |
return TRUE if the value is above or below the outlier cutoff. default "both", samples above and below the threshold are called outliers. |
boolean vector indicating which values of the input vector are flagged as outliers
x <- c(1, 1, 2, 2, 4, 6, 11)
outliers_by_mad(x)
# Using direction="low" disregards outliers above threshold, for example
outliers_by_mad(x, direction="low")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.