R/step-hai-winsorized-truncate.R

Defines functions required_pkgs.step_hai_winsorized_truncate print.step_hai_winsorized_truncate bake.step_hai_winsorized_truncate prep.step_hai_winsorized_truncate step_hai_winsorized_truncate_new step_hai_winsorized_truncate

Documented in required_pkgs.step_hai_winsorized_truncate step_hai_winsorized_truncate

#' Recipes Step Winsorized Truncate Generator
#'
#' @family Recipes
#'
#' @description
#' `step_hai_winsorized_truncate` creates a a *specification* of a recipe
#'  step that will winsorize numeric data.
#'
#' @param recipe A recipe object. The step will be added to the
#'  sequence of operations for this recipe.
#' @param ... One or more selector functions to choose which
#'  variables that will be used to create the new variables. The
#'  selected variables should have class `numeric`
#' @param fraction A positive fractional between 0 and 0.5 that is passed to the
#' `stats::quantile` paramater of `probs`.
#' @param trained A logical to indicate if the quantities for
#'  preprocessing have been estimated.
#' @param role For model terms created by this step, what analysis
#'  role should they be assigned?. By default, the function assumes
#'  that the new variable columns created by the original variables
#'  will be used as predictors in a model.
#' @param columns A character string of variables that will be
#'  used as inputs. This field is a placeholder and will be
#'  populated once `recipes::prep()` is used.
#' @param skip A logical. Should the step be skipped when the recipe is
#'  baked by bake.recipe()? While all operations are baked when prep.recipe()
#'  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.
#' @param id A character string that is unique to this step to identify it.
#'
#' @return For `step_hai_winsorize_truncate`, an updated version of recipe with
#'  the new step added to the sequence of existing steps (if any).
#'
#'  Main Recipe Functions:
#'  - `recipes::recipe()`
#'  - `recipes::prep()`
#'  - `recipes::bake()`
#'
#'
#' @details
#'
#' __Numeric Variables__
#'  Unlike other steps, `step_hai_winsorize_truncate` does *not*
#'  remove the original numeric variables. [recipes::step_rm()] can be
#'  used for this purpose.
#'
#' @examples
#' suppressPackageStartupMessages(library(dplyr))
#' suppressPackageStartupMessages(library(recipes))
#'
#' len_out <- 10
#' by_unit <- "month"
#' start_date <- as.Date("2021-01-01")
#'
#' data_tbl <- tibble(
#'   date_col = seq.Date(from = start_date, length.out = len_out, by = by_unit),
#'   a = rnorm(len_out),
#'   b = runif(len_out)
#' )
#'
#' # Create a recipe object
#' rec_obj <- recipe(b ~ ., data = data_tbl) %>%
#'   step_hai_winsorized_truncate(a, fraction = 0.05)
#'
#' # View the recipe object
#' rec_obj
#'
#' # Prepare the recipe object
#' prep(rec_obj)
#'
#' # Bake the recipe object - Adds the Time Series Signature
#' bake(prep(rec_obj), data_tbl)
#'
#' rec_obj %>% get_juiced_data()
#'
#' @export
#'
#' @importFrom recipes prep bake rand_id

step_hai_winsorized_truncate <- function(recipe,
                                         ...,
                                         role = "predictor",
                                         trained = FALSE,
                                         columns = NULL,
                                         fraction = 0.05,
                                         skip = FALSE,
                                         id = rand_id("hai_winsorized_truncate")) {
  terms <- recipes::ellipse_check(...)

  recipes::add_step(
    recipe,
    step_hai_winsorized_truncate_new(
      terms      = terms,
      role       = role,
      trained    = trained,
      columns    = columns,
      fraction   = fraction,
      skip       = skip,
      id         = id
    )
  )
}

step_hai_winsorized_truncate_new <-
  function(terms, role, trained, columns, fraction, skip, id) {
    recipes::step(
      subclass   = "hai_winsorized_truncate",
      terms      = terms,
      role       = role,
      trained    = trained,
      columns    = columns,
      fraction   = fraction,
      skip       = skip,
      id         = id
    )
  }

#' @export
prep.step_hai_winsorized_truncate <- function(x, training, info = NULL, ...) {
  col_names <- recipes::recipes_eval_select(x$terms, training, info)
  recipes::check_type(training[, col_names])
  # value_data <- info[info$variable %in% col_names, ]
  #
  # if (any(value_data$type != "numeric")) {
  #   rlang::abort(
  #     paste0(
  #       "All variables for `step_hai_winsorized_truncate` must be `numeric`",
  #       "`integer` `double` classes."
  #     )
  #   )
  # }

  step_hai_winsorized_truncate_new(
    terms      = x$terms,
    role       = x$role,
    trained    = TRUE,
    columns    = col_names,
    fraction   = x$fraction,
    skip       = x$skip,
    id         = x$id
  )
}

#' @export
bake.step_hai_winsorized_truncate <- function(object, new_data, ...) {
  make_call <- function(col, fraction) {
    rlang::call2(
      "hai_winsorized_truncate_vec",
      .x = rlang::sym(col),
      .fraction = fraction,
      .ns = "healthyR.ai"
    )
  }

  grid <- expand.grid(
    col = object$columns,
    fraction = object$fraction,
    stringsAsFactors = FALSE
  )

  calls <- purrr::pmap(.l = list(grid$col, grid$fraction), make_call)

  # Column Names
  newname <- paste0("winsorized_truncate_", grid$col)
  calls <- recipes::check_name(calls, new_data, object, newname, TRUE)

  tibble::as_tibble(dplyr::mutate(new_data, !!!calls))
}

#' @export
print.step_hai_winsorized_truncate <-
  function(x, width = max(20, options()$width - 35), ...) {
    title <- "Winsorized Truncation Transformation on "
    recipes::print_step(
      x$columns, x$terms, x$trained,
      width = width, title = title
    )
    invisible(x)
  }

#' Requited Packages
#' @rdname required_pkgs.healthyR.ai
#' @keywords internal
#' @return A character vector
#' @param x A recipe step
# @noRd
#' @export
required_pkgs.step_hai_winsorized_truncate <- function(x, ...) {
  c("healthyR.ai")
}

Try the healthyR.ai package in your browser

Any scripts or data that you put into this service are public.

healthyR.ai documentation built on April 3, 2023, 5:24 p.m.