Description Usage Arguments Details Value Author(s) Examples
Give TRUE for the values of the vectors that are superior to Median+factor(InterquartileDifference)
1 | is.outlier(x, fac = 3)
|
x |
vector in which we search the outliers |
fac |
Factor multiplicative of the interquartile distance for finding the thresholds of outliers. Default value of 3 |
The formula used is the following
x>M+(fac\times{IQ})
OR
x>M-(fac\times{IQ})
Where M is the median of x and IQ the interquartile distance.
A logical vectors that is TRUE when the corresponding value of x is considered an outlier.
Bottin, Marius
1 2 | (A<-rnorm(100))
is.outlier(A)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.