Store frame data in H2O's native format.
h2o.save_frame(x, dir, force = TRUE)
An H2OFrame object
a filesystem location where to write frame data (hdfs, nfs)
logical
. overwrite already existing files (defaults to true)
if (FALSE) {
library(h2o)
h2o.init()
prostate_path = system.file("extdata", "prostate.csv", package = "h2o")
prostate = h2o.importFile(path = prostate_path)
h2o.save_frame(prostate, "/tmp/prostate")
}
Run the code above in your browser using DataLab