-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
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
min / max_horizontal PanicException for mixed types #21835
Comments
Easily reproducible in Rust. This looks straightforward to fix in the code, and I would like to give it a try. Code snippet let df = df!(
"x" => [1, 2],
"y" => ["three", "four"])
.unwrap();
let result = df.select(["x", "y"])?.min_horizontal();
println!("result: {:?}", result);
Ok(()) gives
|
kdn36
pushed a commit
to kdn36/polars
that referenced
this issue
Mar 19, 2025
kdn36
pushed a commit
to kdn36/polars
that referenced
this issue
Mar 19, 2025
kdn36
added a commit
to kdn36/polars
that referenced
this issue
Mar 19, 2025
kdn36
added a commit
to kdn36/polars
that referenced
this issue
Mar 23, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checks
Reproducible example
Log output
Issue description
If the String column is last the expected error is raised.
Expected behavior
ComputeError
Installed versions
The text was updated successfully, but these errors were encountered: