Write CSV to a compressed file
write.csv.gz(x, file, na = "", row.names = FALSE, ...)
A data.frame or similar CSV-writeable object
character destination to write the gzipped CSV to
See write.csv
. This just changes the default
to a Crunch-friendly empty string.
logical: write out row names? See write.csv
. This
just sets a default of FALSE
.
Additional arguments passed to write.csv
.
Whatever write.csv
returns.