check_unary_func_throw_error {pipeliner} | R Documentation |
Helper function that checks if a ml_pipeline_builder
method is unary function (if it
isn't a NULL returning function), and if it isn't, throws an error that is customised with the
method function name.
check_unary_func_throw_error(func, func_name)
func |
A |
func_name |
The name of the |
## Not run:
transform_method <- function(df) df
check_unary_func_throw_error(transform_method, "transform_method")
# NULL
## End(Not run)