-
Notifications
You must be signed in to change notification settings - Fork 53
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
Support Vector{Dict{String,Any}} as a Table format #295
Comments
AFAICT the thing is that normally assumes that column names are
|
Implements #295. This is fairly simple. I think we didn't do this before because it's a bit weird using plain Dicts because of the lack of schema/column order. But using OrderedDicts makes this a natural use.
Implemented in #296 |
Implements #295. This is fairly simple. I think we didn't do this before because it's a bit weird using plain Dicts because of the lack of schema/column order. But using OrderedDicts makes this a natural use.
@robsmith11 - OK to close it? |
Yep, just tested master branch and works great now. Thanks! |
I see that support was added from #132 but it looks like it's only working for the case where keys are
Symbol
s, notString
s, which for example is whatJSON.Parse.parse()
outputs.Is there any reason to not support both cases?
The text was updated successfully, but these errors were encountered: