Skip to contents

Control_object

Usage

control_outlier(
  numeric_method = "mean_sd",
  discrete_method = "prop",
  threshold = NULL,
  conf_int = NULL,
  prop = NULL,
  n_vars = NULL,
  freq = NULL,
  min_times = NULL,
  ties_method = "min",
  na_action = "keep",
  ...
)

Arguments

numeric_method

dd

discrete_method

m

threshold

'NULL' for the other methods than t-test. Default is 3 for mean and sd method and MAD method, IQD uses 2.2.

conf_int

conf int for t-test

prop

proportion of factors/char (0 - 1)

n_vars

n_vars if

freq

f

min_times

m

ties_method

factors

na_action

"keep" NA is the default

...

not currently used

Value

control_object

Examples

control_outlier()
#> $numeric_method
#> [1] "mean_sd"
#> 
#> $discrete_method
#> [1] "prop"
#> 
#> $threshold
#> [1] 3
#> 
#> $conf_int
#> [1] 0.95
#> 
#> $prop
#> [1] 0.05
#> 
#> $n_vars
#> NULL
#> 
#> $freq
#> NULL
#> 
#> $ties_method
#> [1] "min"
#> 
#> $na_action
#> [1] "keep"
#> 
#> $min_times
#> NULL
#> 
#> attr(,"class")
#> [1] "control_outlier" "list"