R/param_threshold.R

Defines functions threshold

Documented in threshold

#' General thresholding parameter
#'
#' In a number of cases, there are arguments that are threshold values for
#' data falling between zero and one. For example, `recipes::step_other()` and
#' so on.
#'
#' @inheritParams Laplace
#' @examples
#' threshold()
#' @export
threshold <- function(range = c(0, 1), trans = NULL) {
  new_quant_param(
    type = "double",
    range = range,
    inclusive = c(TRUE, TRUE),
    trans = trans,
    label = c(threshold = "Threshold"),
    finalize = NULL
  )
}

Try the dials package in your browser

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

dials documentation built on April 3, 2023, 5:43 p.m.