We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
missing
I think in such cases missing should not appear as level in the output:
Case 1:
julia> freqtable(categorical(["a", 'b'])) 3-element Named Array{Int64,1} Dim1 │ ────────┼── a │ 1 'b' │ 1 missing │ 0
Case 2:
julia> freqtable(categorical(Union{String,Missing}["a", "b"])) 3-element Named Array{Int64,1} Dim1 │ ────────┼── a │ 1 b │ 1 missing │ 0
The text was updated successfully, but these errors were encountered:
Good catch. Shouldn't be too hard to fix.
Sorry, something went wrong.
No branches or pull requests
I think in such cases
missing
should not appear as level in the output:Case 1:
Case 2:
The text was updated successfully, but these errors were encountered: