h2o.load_frame | R Documentation |
Load frame previously stored in H2O's native format.
h2o.load_frame(frame_id, dir, force = TRUE)
frame_id |
the frame ID of the original frame |
dir |
a filesystem location where to look for frame data |
force |
|
## Not run:
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")
prostate.key <- h2o.getId(prostate)
h2o.rm(prostate)
prostate <- h2o.load_frame(prostate.key, "/tmp/prostate")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.