JuliaData / CategoricalArrays.jl

Arrays for working with categorical data (both nominal and ordinal)
Other
125 stars 33 forks source link

Add promotion rules for `CategoricalArray`s and views of `CategoricalArray`s #386

Open nalimilan opened 2 years ago

nalimilan commented 2 years ago

On Julia 1.9, we get this (see https://github.com/JuliaData/CategoricalArrays.jl/pull/385):

julia> [categorical(1:2), view(categorical(1:2), :)]
2-element Vector{Vector{CategoricalValue{Int64, UInt32}}}:
 [1, 2]
 [1, 2]