h2o.save_frame: Store frame data in H2O's native format.

View source: R/export.R

h2o.save_frameR Documentation

Store frame data in H2O's native format.

Description

Store frame data in H2O's native format.

Usage

h2o.save_frame(x, dir, force = TRUE)

Arguments

x

An H2OFrame object

dir

a filesystem location where to write frame data (hdfs, nfs)

force

logical. overwrite already existing files (defaults to true)

Examples

## 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")

## End(Not run)

h2o documentation built on Aug. 9, 2023, 9:06 a.m.