We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Vector
Currently there is an inconsistency between Array and Vector conversions for categorical arrays
Array
julia> x = CategoricalArray([1, 1, 1, 2, 2, 3]); julia> Array(x) 6-element Array{Int64,1}: 1 1 1 2 2 3 julia> Vector(x) 6-element Array{CategoricalValue{Int64,UInt32},1}: 1 1 1 2 2 3