R/deprec-impute_lower.R

Defines functions step_lowerimpute

Documented in step_lowerimpute

#' Impute numeric data below the threshold of measurement
#'
#' @description
#' `r lifecycle::badge("deprecated")`
#' 
#' Please use [step_impute_lower()] instead.
#'
#' @keywords internal
#' @export
step_lowerimpute <- function(recipe,
                             ...,
                             role = NA,
                             trained = FALSE,
                             threshold = NULL,
                             skip = FALSE,
                             id = rand_id("impute_lower")) {
  lifecycle::deprecate_stop(
    when = "0.1.16",
    what = "recipes::step_lowerimpute()",
    with = "recipes::step_impute_lower()"
  )
}

Try the recipes package in your browser

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

recipes documentation built on July 4, 2024, 9:06 a.m.