This function identifies outliers in a numeric variable of a data.frame using the interquartile range (IQR) method.
Examples
if (FALSE) {
data(mtcars)
find_outliers(mtcars, mpg)
find_outliers(mtcars, wt)
}
This function identifies outliers in a numeric variable of a data.frame using the interquartile range (IQR) method.
if (FALSE) {
data(mtcars)
find_outliers(mtcars, mpg)
find_outliers(mtcars, wt)
}