-
Notifications
You must be signed in to change notification settings - Fork 143
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
cannot save custom type data #99
Comments
Date is a custom bitstype. We can and should probably support this, but it's pretty uncommon. |
Ah, ok. So this is not supported presently. The motivation is to compress the datasets in the MarketData package so it's not parsed from a csv file every time the package is opened. I'll look into how RDatasets handles this for some clues |
I was looking for something similar to |
No, this is the right package. JLD works fine with built-in numeric types, regular custom types, and immutables. We just do (yet) have support for custom bitstypes (i.e. types declared as |
Ok, great. Right now the MarketData package takes quite a bit of time to load (about 15-18 seconds) and that's with only 3 large datasets. I'm planning to add a couple dozen more but need a faster load time solution. |
Fixed |
Thanks Tim! |
@timholy We should actually be able to save custom bitstypes of any size as opaque user-defined HDF5 types (see the HDF5 manual section 6.4.3.1). I will revisit this when I implement #27, which at this point I have neglected for far too long. |
The text was updated successfully, but these errors were encountered: