step_outliers_outForest creates a specification of a recipe step that will calculate the outlier score using outForest from outForest, it internally handles missing data.

step_outliers_outForest(
  recipe,
  ...,
  role = NA,
  trained = FALSE,
  outlier_score = NULL,
  columns = NULL,
  name_mutate = ".outliers_outForest",
  options = list(formula = . ~ ., replace = c("pmm", "predictions", "NA", "no"), pmm.k =
    3, threshold = 3, max_n_outliers = Inf, max_prop_outliers = 1, min.node.size = 40,
    allow_predictions = FALSE, impute_multivariate = TRUE, impute_multivariate_control =
    list(pmm.k = 3, num.trees = 50, maxiter = 3L), seed = NULL, verbose = 0),
  outlier_score_function = mean,
  original_result = FALSE,
  skip = TRUE,
  id = rand_id("outliers_outForest")
)

# S3 method for step_outliers_outForest
tidy(x, ...)

Arguments

recipe

A recipe object. The step will be added to the sequence of operations for this recipe.

...

One or more selector functions to choose variables for this step. See selections() for more details.

role

not defined for this function

trained

A logical to indicate if the quantities for preprocessing have been estimated.

outlier_score

a placeholder for the exit of this function don't change

columns

A character string of variable names that will be populated (eventually) by the terms argument.

name_mutate

the name of the generated column with outForest results

options

a list with arguments to outForest function.

outlier_score_function

a function to decide when there are multivariate outlier scores how to combine them, some examples would be sum or median

original_result

an argument to return a tibble row with the original results of the function instead of an computed score

skip

A logical. Should the step be skipped when the recipe is baked by bake()? While all operations are baked when prep() is run, some operations may not be able to be conducted on new data (e.g. processing the outcome variable(s)). Care should be taken when using skip = TRUE as it may affect the computations for subsequent operations.

id

A character string that is unique to this step to identify it.

x

A step_outliers_outForest object.

Value

An updated version of recipe with the new step added to the sequence of existing steps (if any), with the name on name_mutate and the probabilities calculated. For the tidy method, a tibble with columns index (the row indexes of the tibble) and outlier_score (the scores).

Details

All columns in the data are sampled and returned by juice() and bake().

All columns used in this step must be numeric with no missing data.

When used in modeling, users should strongly consider using the option skip = TRUE so that this operation is not conducted outside of the training set.

Examples

library(recipes)
library(tidy.outliers)
rec <-
  recipe(mpg ~ ., data = mtcars) %>%
  step_outliers_outForest(all_numeric_predictors()) %>%
  prep(mtcars)
#> Due to small sample size, reduced 'min.node.size' to 11

bake(rec, new_data = NULL)
#> # A tibble: 32 × 12
#>      cyl  disp    hp  drat    wt  qsec    vs    am  gear  carb   mpg .outliers…¹
#>    <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>       <dbl>
#>  1     6  160    110  3.9   2.62  16.5     0     1     4     4  21             0
#>  2     6  160    110  3.9   2.88  17.0     0     1     4     4  21             0
#>  3     4  108     93  3.85  2.32  18.6     1     1     4     1  22.8           0
#>  4     6  258    110  3.08  3.22  19.4     1     0     3     1  21.4           0
#>  5     8  360    175  3.15  3.44  17.0     0     0     3     2  18.7           0
#>  6     6  225    105  2.76  3.46  20.2     1     0     3     1  18.1           0
#>  7     8  360    245  3.21  3.57  15.8     0     0     3     4  14.3           0
#>  8     4  147.    62  3.69  3.19  20       1     0     4     2  24.4           0
#>  9     4  141.    95  3.92  3.15  22.9     1     0     4     2  22.8           1
#> 10     6  168.   123  3.92  3.44  18.3     1     0     4     4  19.2           0
#> # … with 22 more rows, and abbreviated variable name ¹​.outliers_outForest

tidy(rec, number = 1)
#> # A tibble: 32 × 3
#>    index outlier_score id                      
#>    <int>         <dbl> <chr>                   
#>  1     1             0 outliers_outForest_ltxaH
#>  2     2             0 outliers_outForest_ltxaH
#>  3     3             0 outliers_outForest_ltxaH
#>  4     4             0 outliers_outForest_ltxaH
#>  5     5             0 outliers_outForest_ltxaH
#>  6     6             0 outliers_outForest_ltxaH
#>  7     7             0 outliers_outForest_ltxaH
#>  8     8             0 outliers_outForest_ltxaH
#>  9     9             1 outliers_outForest_ltxaH
#> 10    10             0 outliers_outForest_ltxaH
#> # … with 22 more rows