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
While I can access 2-dimensional DataArrays using the []-notation, it seems to fail for higher-dimensional DataArrays:
julia> dm = DataArray(Float64,2,3,2)
2x3x2 DataArray{Float64,3}:
[:, :, 1] =
NA NA NA
NA NA NA
[:, :, 2] =
NA NA NA
NA NA NA
julia> dm[1,2,2]
ERROR: no method getindex(DataArray{Float64,3},Int64,Int64,Int64)
julia> dm[1,2,2]=1.0
ERROR: no method setindex!(DataArray{Float64,3},Float64,Int64,Int64,Int64)
I am using the version of DataFrames which was bundled with the Julia binary 0.2.0 for mac.
Is there are work-around for this issue?
Thanks, Marcus
The text was updated successfully, but these errors were encountered:
While I can access 2-dimensional DataArrays using the []-notation, it seems to fail for higher-dimensional DataArrays:
I am using the version of DataFrames which was bundled with the Julia binary 0.2.0 for mac.
Is there are work-around for this issue?
Thanks, Marcus
The text was updated successfully, but these errors were encountered: