Description Usage Arguments Details Value Examples
Return logical true where outliers are in a vector.
1 2  | find.outliers(x, tail = "both", meth = "trim", probs = c(0.25, 0.75),
  sdn = 2, na.rm = TRUE, ...)
 | 
x | 
 A vector  | 
tail | 
 One of   | 
meth | 
 One of   | 
probs | 
 A 1 or 2 element numeric vector of probabilities  | 
sdn | 
 when meth = 'sd', number of standard deviations away from the mean to detect outlier  | 
na.rm | 
 A boolean whether to remove NA  | 
Each method will be described here in the future.
A boolean vector where outliers outside of quantile(x,probs) (see details for individual methods) are true.
1 2  | x <- rnorm(1000)
y <- find.outliers(x,probs=c(.01,.99))
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.