Skip to contents

The outlier will highlighted in green and the word 'Outlier' will replace the value in the cell.

R logo

Usage

routlier_rh_sd(data, sd)

Arguments

data

filepath to data

sd

number of standard deviations.

Value

Return's an outlier dataset from the original dataset in a rhandonstable. The user must specify the standard deviation to determine the outlier.

Examples



## Look at 2 SD outliers
  routlier_rh_sd(data = iris,sd = 2)
#> You have  11  outliers in your dataset
## Look at 3 SD outliers routlier_rh_sd(data = iris, sd = 3) #> You have 1 outliers in your dataset