Applies conditional statements to numeric vectors in H2O parsed data objects when the data are numeric.
h2o.ifelse(test, yes, no)
ifelse(test, yes, no)Returns a vector of new values matching the conditions stated in the ifelse call.
Both numeric and categorical values can be tested. However when returning a yes and no condition both conditions must be either both categorical or numeric.
if (FALSE) { # \dontrun{
library(h2o)
h2o.init()
australia_path <- system.file("extdata", "australia.csv", package = "h2o")
australia <- h2o.importFile(path = australia_path)
australia[, 9] <- ifelse(australia[, 3] < 279.9, 1, 0)
summary(australia)
} # }