h2o (version 3.30.0.1)

h2o.rm: Delete Objects In H2O

Description

Remove the h2o Big Data object(s) having the key name(s) from ids.

Usage

h2o.rm(ids, cascade = TRUE)

Arguments

ids

The object or hex key associated with the object to be removed or a vector/list of those things.

cascade

Boolean, if set to TRUE (default), the object dependencies (e.g. submodels) are also removed.

See Also

h2o.assign, h2o.ls

Examples

Run this code
# NOT RUN {
library(h2o)
h2o.init()
iris_hex <- as.h2o(iris)
model <- h2o.glm(1:4,5,training = iris_hex, family = "multinomial")
h2o.rm(iris_hex)
# }

Run the code above in your browser using DataCamp Workspace