From 62796d909ce7fe326759cd74c341610ed0177c34 Mon Sep 17 00:00:00 2001 From: Alisa Petrova <60570090+sn0rkmaiden@users.noreply.github.com> Date: Wed, 13 Nov 2024 21:46:34 +0300 Subject: [PATCH] Update lazy.py Fixed typo according to issue #19757 --- py-polars/polars/functions/lazy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py-polars/polars/functions/lazy.py b/py-polars/polars/functions/lazy.py index dfd3f607791c..30185cc6a586 100644 --- a/py-polars/polars/functions/lazy.py +++ b/py-polars/polars/functions/lazy.py @@ -1030,7 +1030,7 @@ def map_groups( The output for group `1` can be understood as follows: - - group `1` contains Series `'a': [1, 3]` and `'b': [4, 5]` + - group `1` contains Series `'a': [1, 3]` and `'b': [5, 6]` - applying the function to those lists of Series, one gets the output `[1 / 4 + 5, 3 / 4 + 6]`, i.e. `[5.25, 6.75]` """