- data
An H2OFrame object.
- path
The path to write the file to. Must include the directory and
also filename if exporting to a single file. May be prefaced with
hdfs:// or s3n://. Each row of data appears as line of the file.
- force
logical, indicates how to deal with files that already exist.
- sep
The field separator character. Values on each line of
the file will be separated by this character (default ",").
- compression
How to compress the exported dataset
(default none; gzip, bzip2 and snappy available)
- parts
integer, number of part files to export to. Default is to
write to a single file. Large data can be exported to multiple
'part' files, where each part file contains subset of the data.
User can specify the maximum number of part files or use value
-1 to indicate that H2O should itself determine the optimal
number of files.
Parameter path will be considered to be a path to a directory
if export to multiple part files is desired. Part files conform
to naming scheme 'part-m-?????'.
- header
logical, indicates whether to write the header line.
Default is to include the header in the output file.
- quote_header
logical, indicates whether column names should be
quoted. Default is to use quotes.
- format
string, one of "csv" or "parquet". Default is "csv". Export
to parquet is multipart and H2O itself determines the optimal number
of files (1 file per chunk).