We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
A = ndsparse((numid=1:10,), (a=1:10,b=1:10); chunks=2) B = map(v->v.a+1,A)
seems to work, but assigns wrong type parameter typeof(B)
typeof(B)
JuliaDB.DNDSparse{NamedTuple{(:numid,),Tuple{Int64}},NamedTuple{(:a, :b),Tuple{Int64,Int64}}}
which makes
C = filter(isodd, B)
fail with
ERROR: column a not found.
The text was updated successfully, but these errors were encountered:
I investigated a bit and think the minor fix in pull request #316 suffices.
typeof(B) in the example is now
JuliaDB.DNDSparse{NamedTuple{(:numid,),Tuple{Int64}},Int64}
Sorry, something went wrong.
No branches or pull requests
seems to work, but assigns wrong type parameter
typeof(B)
which makes
fail with
The text was updated successfully, but these errors were encountered: