Bogumił Kamiński
Bogumił Kamiński
I have a similar usecase but rather for an equivalent of `prop.table` in R. You can do it now using `tab ./ sum(tab, dims)`, but it is such a common...
see the referenced PR https://github.com/nalimilan/FreqTables.jl/pull/19. You can use `prop` function.
Have a look at help of `prop`, this is the way to use it: ``` julia> prop([1 2; 3 4], 1, 2) 2×2 Array{Float64,2}: 1.0 1.0 1.0 1.0 julia> prop([1...
Ah - understood. I do not think it is supported. Out of curiosity - in what situation would you need it (apart from the fact that R provides it)? I...
I agree with this use-case, but I would rather create a custom display function for this (that could e.g. automatically also use MIME-type to output HTML, LaTeX etc.) so that...
Sorry - I meant `Name` not `Names`. A good point - we also should export `Not`. Other things exported by NamedArrays.jl are `NamedArray`, `NamedVector`, `NamedMatrix`. We could re-export them, but...
We can keep it open now (I am OK with any decision you make - just wanted to highlight the issue). The problem, as probably you are aware, is that...
Thanks! I agree with the reason - but I did not have time to dig into `NamedArrays` to propose the right solution.
I would recommend to do something about it because it is not related to `Any` type only, e.g. This is a bad bug (it passes silently and gives error): ```...
@nalimilan Maybe a temporary solution would be to force such class of cases to `CategoricalArray` before processing?