| validate_outcomes_are_numeric {hardhat} | R Documentation |
Ensure outcomes are all numeric
Description
validate - asserts the following:
-
outcomesmust have numeric columns.
check - returns the following:
-
okA logical. Does the check pass? -
bad_classesA named list. The names are the names of problematic columns, and the values are the classes of the matching column.
Usage
validate_outcomes_are_numeric(outcomes)
check_outcomes_are_numeric(outcomes)
Arguments
outcomes |
An object to check. |
Details
The expected way to use this validation function is to supply it the
$outcomes element of the result of a call to mold().
Value
validate_outcomes_are_numeric() returns outcomes invisibly.
check_outcomes_are_numeric() returns a named list of two components,
ok and bad_classes.
Validation
hardhat provides validation functions at two levels.
-
check_*(): check a condition, and return a list. The list always contains at least one element,ok, a logical that specifies if the check passed. Each check also has check specific elements in the returned list that can be used to construct meaningful error messages. -
validate_*(): check a condition, and error if it does not pass. These functions call their corresponding check function, and then provide a default error message. If you, as a developer, want a different error message, then call thecheck_*()function yourself, and provide your own validation function.
See Also
Other validation functions:
validate_column_names(),
validate_no_formula_duplication(),
validate_outcomes_are_binary(),
validate_outcomes_are_factors(),
validate_outcomes_are_univariate(),
validate_prediction_size(),
validate_predictors_are_numeric()
Examples
# All good
check_outcomes_are_numeric(mtcars)
# Species is not numeric
check_outcomes_are_numeric(iris)
# This gives an intelligent error message
try(validate_outcomes_are_numeric(iris))