1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/newvalues.R
\name{check_new_values}
\alias{check_new_values}
\title{Check for New Values}
\usage{
check_new_values(
recipe,
...,
role = NA,
trained = FALSE,
columns = NULL,
ignore_NA = TRUE,
values = NULL,
skip = FALSE,
id = rand_id("new_values")
)
}
\arguments{
\item{recipe}{A recipe object. The check will be added to the
sequence of operations for this recipe.}
\item{...}{One or more selector functions to choose which
variables are checked in the check. See \code{\link[=selections]{selections()}}
for more details. For the \code{tidy} method, these are not
currently used.}
\item{role}{Not used by this check since no new variables are
created.}
\item{trained}{A logical for whether the selectors in \code{...}
have been resolved by \code{\link[=prep]{prep()}}.}
\item{columns}{A character string of variable names that will
be populated (eventually) by the terms argument.}
\item{ignore_NA}{A logical that indicates if we should consider missing
values as value or not. Defaults to \code{TRUE}.}
\item{values}{A named list with the allowed values.
This is \code{NULL} until computed by prep.recipe().}
\item{skip}{A logical. Should the check be skipped when the
recipe is baked by \code{\link[=bake.recipe]{bake.recipe()}}? While all operations are baked
when \code{\link[=prep.recipe]{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 \code{skip = TRUE} as it may affect
the computations for subsequent operations.}
\item{id}{A character string that is unique to this step to identify it.}
}
\value{
An updated version of \code{recipe} with the new check
added to the sequence of existing operations (if any). For the
\code{tidy} method, a tibble with columns \code{terms} (the
selectors or variables selected).
}
\description{
\code{check_new_values} creates a \emph{specification} of a recipe
operation that will check if variables contain new values.
}
\details{
This check will break the \code{bake} function if any of the checked
columns does contain values it did not contain when \code{prep} was called
on the recipe. If the check passes, nothing is changed to the data.
}
\examples{
library(modeldata)
data(credit_data)
# If the test passes, `new_data` is returned unaltered
recipe(credit_data) \%>\%
check_new_values(Home) \%>\%
prep() \%>\%
bake(new_data = credit_data)
# If `new_data` contains values not in `x` at the `prep()` function,
# the `bake()` function will break.
\dontrun{
recipe(credit_data \%>\% dplyr::filter(Home != "rent")) \%>\%
check_new_values(Home) \%>\%
prep() \%>\%
bake(new_data = credit_data)
}
# By default missing values are ignored, so this passes.
recipe(credit_data \%>\% dplyr::filter(!is.na(Home))) \%>\%
check_new_values(Home) \%>\%
prep() \%>\%
bake(credit_data)
# Use `ignore_NA = FALSE` if you consider missing values as a value,
# that should not occur when not observed in the train set.
\dontrun{
recipe(credit_data \%>\% dplyr::filter(!is.na(Home))) \%>\%
check_new_values(Home, ignore_NA = FALSE) \%>\%
prep() \%>\%
bake(credit_data)
}
}
|