You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.
Most CSV readers (notably, base R readers) support compressed (gz, bzip2...) CSV files transparently. It would be a nice addition to MonetDBLite::monetdb.read.csv, because big CSVs are commonly gzip'ed.
The text was updated successfully, but these errors were encountered:
And what about allowing an external command to be specified? May this be possible? Example: data.table::fread. You can read a compressed CSV as follows:
And another quick and portable option would be to rely on the R.utils package, which implements gunzip and the like based on base R (efficiently copying from a gzfile, bzfile... connection to a file connection). But this would mean adding R.utils as a dependency (or porting to MonetDBLite just the relevant code). What do you think?
hannes
changed the title
[request] support for compressed CSV files
Support for compressed CSV files
Jun 15, 2018
Most CSV readers (notably, base R readers) support compressed (gz, bzip2...) CSV files transparently. It would be a nice addition to
MonetDBLite::monetdb.read.csv
, because big CSVs are commonly gzip'ed.The text was updated successfully, but these errors were encountered: