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
In the description of example it is said that:
The output for group 1 can be understood as follows:
1
group 1 contains Series 'a': [1, 3] and 'b': [4, 5]
'a': [1, 3]
'b': [4, 5]
applying the function to those lists of Series, one gets the output [1 / 4 + 5, 3 / 4 + 6], i.e. [5.25, 6.75]
[1 / 4 + 5, 3 / 4 + 6]
[5.25, 6.75]
But correct values for 'b' list are [5, 6] according to data above and the result.
'b'
[5, 6]
https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.map_groups.html
The text was updated successfully, but these errors were encountered:
thanks @sn0rkmaiden for the report - are you interested in making a pull request to update it?
Sorry, something went wrong.
Update lazy.py
62796d9
Fixed typo according to issue pola-rs#19757
@MarcoGorelli Sure, I've opened a pull request. Could you please check?
Closed by #19769
No branches or pull requests
Description
In the description of example it is said that:
The output for group
1
can be understood as follows:group 1 contains Series
'a': [1, 3]
and'b': [4, 5]
applying the function to those lists of Series, one gets the output
[1 / 4 + 5, 3 / 4 + 6]
, i.e.[5.25, 6.75]
But correct values for
'b'
list are[5, 6]
according to data above and the result.Link
https://docs.pola.rs/api/python/stable/reference/expressions/api/polars.map_groups.html
The text was updated successfully, but these errors were encountered: