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
I find this result strange:
julia> cut([fill(1, 10); 4], 2) 11-element CategoricalArray{String,1,UInt32}: "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" julia> cut([fill(1, 10); 4], 3, allowempty=true) 11-element CategoricalArray{String,1,UInt32}: "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]" "Q2: [1.0, 4.0]"
The text was updated successfully, but these errors were encountered:
julia> cut([fill(1, 5); fill(4,5)], 2) 10-element CategoricalArray{String,1,UInt32}: "Q1: [1.0, 2.5)" "Q1: [1.0, 2.5)" "Q1: [1.0, 2.5)" "Q1: [1.0, 2.5)" "Q1: [1.0, 2.5)" "Q2: [2.5, 4.0]" "Q2: [2.5, 4.0]" "Q2: [2.5, 4.0]" "Q2: [2.5, 4.0]" "Q2: [2.5, 4.0]" julia> cut([fill(1, 5); fill(4,5)], 3) 10-element CategoricalArray{String,1,UInt32}: "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]" "Q1: [1.0, 4.0]"
Sorry, something went wrong.
No branches or pull requests
I find this result strange:
The text was updated successfully, but these errors were encountered: