Out: Determines Inner and Outer IQR Fence Outlier Counts

Description Usage Arguments Value Examples

View source: R/Out.R

Description

Determines number of values by column that fall between the inner and outer IQR Range Fences. The inner fence is 1.5 times the 1st and 3rd quartile and the outer fence is 3 times the distance.

If verbose = TRUE, displays results to console

If Verbose = FALSE, returns dataframe of results

Usage

1
Out(x, verbose = TRUE)

Arguments

x

A matrix-like R object

verbose

Logical operator

Value

A dataframe of results

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
## Not run: 
x <- data.frame("X1" = c(71,70,73,70,70,69,70,72,71,300,71,69),
                "X2" = c(71,70,73,70,70,66,70,72,71,300,71,301),
                "X3" = c(71,70,73,70,70,69,70,72,71,71,71,69))

Out(x)

value <- Out(x, verbose = FALSE)

## End(Not run)

ckornafel/expldata documentation built on Dec. 27, 2019, 2:20 a.m.