clean_ints: Removes outliers based on quartiles or IQR

View source: R/autoEDA.R

clean_intsR Documentation

Removes outliers based on quartiles or IQR

Description

Removes outliers based on quartiles or IQR

Usage

clean_ints(
  x,
  high = TRUE,
  low = TRUE,
  lower_q = 0.01,
  upper_q = 0.99,
  method = "quartile"
)

Arguments

x

numeric variable

high

clean upper bound

low

clean lower bound

lower_q

lower quartile

upper_q

upper quartile

method

method of cleaning either 'quartile' or 'iqr'


mrweaver77/autoEDA documentation built on April 5, 2023, 8:11 p.m.