-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I/O metaissuse #2125
Comments
This list sounds so juicy - looking forward to seeing how it all works when it is done. |
I've been looking forward to this as well! One idea I discussed briefly with @StefanKarpinski was to have transparent reading/writing of compressed (gzip, bzip2, xz) files (with a way to access the raw stream if needed). The current gzip interface is somewhat limited, so it would be nice to integrate with/build on the I/O system once this work has moved forward. For gzip and xz, http://git.tukaani.org/?p=libxzfile.git might be worth looking at. |
+1 A binary, saved R dataset (the RDX2 format) can be compressed with gzip, bzip2 or xz and xz is preferred for very large datasets. Right now I need to write them out with gzip compression and use using DataFrames, RDA
require("gzip")
using GZip
ff = gzopen(<filename>)
fr = read_RDA(ff)
close(ff) |
Yes, this would be great to have. -- John On Jan 25, 2013, at 12:45 PM, dmbates [email protected] wrote:
|
Highest priority is eliminating the need for the |
Where do we stand on this one w.r.t. 0.2? |
Subsumed by #3887. |
The text was updated successfully, but these errors were encountered: