You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 4, 2019. It is now read-only.
This is reproducible (on 0.4.0-dev+5252) (and generate problems with the indexing of DataFrames (see issue see issue #810:
da = @data([1, 2, NA, 4])
da[1:3]
ERROR: DimensionMismatch("index 1 has size (3,), but size(A) = ()")
in checksize at multidimensional.jl:287
in anonymous at /Users/gragusa/.julia/v0.4/Compat/src/ngenerate.jl:128
in getindex at /Users/gragusa/.julia/v0.4/DataArrays/src/indexing.jl:159
I tracked down the issue to a misbehaviour of Base.index_shape
Base.index_shape(Base.to_index([1:2], [1])...)
gives
(1,)
instead of
(2,1)
The text was updated successfully, but these errors were encountered:
This is reproducible (on
0.4.0-dev+5252
) (and generate problems with the indexing of DataFrames (see issue see issue #810:I tracked down the issue to a misbehaviour of
Base.index_shape
gives
instead of
The text was updated successfully, but these errors were encountered: