Learn R Programming

lvmisc (version 0.1.2)

is_outlier: Check whether value is outlier

Description

is_outlier returns a logical vector indicating whether a value is an outlier based on the rule of 1.5 times the interquartile range above the third quartile or below the first quartile.

Usage

is_outlier(x, na.rm = FALSE)

Value

A logical vector.

Arguments

x

A numerical vector

na.rm

A logical value indicating whether NA values should be stripped before the computation proceeds. Defaults to FALSE.

See Also

Examples

Run this code
x <- c(1:8, NA, 15)
is_outlier(x, na.rm = TRUE)

Run the code above in your browser using DataLab