- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
PanicException: skip_nulls does not work in map_elements when used on pl.struct #15322
Comments
Some relevant info: #10102 (comment) I had to add a check to the UDF def udf(x):
if None in x.values(): return
...
... |
The no longer panics on main and produces what appears to be correct output:
|
Thanks @lukemanley. Will close it. |
@ritchie46 I am thinking this bug still persists in some way. On just released 1.19.0: (
pl.DataFrame(
{"my_struct": [None, {"field_a": 1}, {"field_a": 2}]}
)
.with_columns(
pl.col("my_struct").map_elements(
lambda x: print(x),
skip_nulls=True,
)
)
) Prints the following:
Hence, the function is getting called on the null value, despite |
refs pola-rs/polars#15322
@dhimmel A PR has been merged on main. |
Checks
Reproducible example
Log output
Issue description
The default setting of
skip_nulls = True
works fine if map_elements() is used on a column. But if it is used on s pl.struct, then it lets through nulls.Expected behavior
Should be able to filter records passed to the map_elements function if any input parameter contains null, like:
skip_nulls = Any
Installed versions
The text was updated successfully, but these errors were encountered: