We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0279a81 commit 51d7942Copy full SHA for 51d7942
pandas/core/groupby/groupby.py
@@ -3912,10 +3912,9 @@ def ewm(
3912
Times corresponding to the observations.
3913
3914
method : {'single', 'table'}, default 'single'
3915
- Method for computing the exponentially weighted statistics.
3916
- * ``'single'``: Calculate the statistic for each group independently.
3917
- * ``'table'``: Calculate the statistic using the entire table and then
3918
- regroup. Useful for performance but may give different results.
+ Execute the operation per group independently (``'single'``) or over the entire
+ object before regrouping (``'table'``). Only applicable to ``mean()``, and only
+ when using ``engine='numba'``.
3919
3920
Returns
3921
-------
0 commit comments