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
This seems pretty bad to me and I don't think it's documented. I'd like to call it a bug and fix it in minor release if that is acceptable.
julia> x =AxisArray([1,2], [:a, :b])
1-dimensional AxisArray{Int64,1,...} with axes::row, [:a, :b]
And data, a 2-element Vector{Int64}:12
julia> x[[:a, :b]] # Okay1-dimensional AxisArray{Int64,1,...} with axes::row, [:a, :b]
And data, a 2-element Vector{Int64}:12
julia> x[[:b, :a]] # Should flip, but doesn't1-dimensional AxisArray{Int64,1,...} with axes::row, [:a, :b]
And data, a 2-element Vector{Int64}:12
julia> x[[2, 1]] # Should flip and does1-dimensional AxisArray{Int64,1,...} with axes::row, [:b, :a]
And data, a 2-element Vector{Int64}:21
This seems pretty bad to me and I don't think it's documented. I'd like to call it a bug and fix it in minor release if that is acceptable.
Possibly related to #204
The text was updated successfully, but these errors were encountered: