julia> freqtable([0,1])
ERROR: BoundsError()
in setindex! at /Users/david/.julia/v0.3/NamedArrays/src/index.jl:72
in freqtable at /Users/david/werk/julia/Tables.jl/src/freqtable.jl:69
Problem is the values (0, 1) are the keys the dicts used in NamedArrays. getindex() works, but setindex!() not.
This may be a problem of NamedArrays.
Problem is the values (0, 1) are the keys the dicts used in NamedArrays. getindex() works, but setindex!() not.