-
Notifications
You must be signed in to change notification settings - Fork 18
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
UndefInitializer -> cannot save as BSON / JLD #24
Comments
MWE
|
By default, any "reference" type will use |
No. I do not have a workaround. |
Yes, that is interesting. I was confused when you said:
does that not work as a workaround? |
Yes it does work. |
A dataframe of mine has the type below.
It has four unique entries (three strings and missing)
When trying to save this as BSON/JLD I get an UndeRefError.
Is there any way to keep working with SentinelArray and 'get rid of UndefInitializer'?
Or is there an option for CSV.read to avoid this?
I gather they are looking to make 'undef' work for BSON JuliaIO/BSON.jl#43
Then again, my data has no undef. Only the type has 'undef'...
this works for me (for the time being) :
dfraw.Instanz = convert(Array{Union{Missing,String},1},dfraw.Instanz);
I also mentioned this here
JuliaIO/BSON.jl#3 (comment)
The text was updated successfully, but these errors were encountered: