pandas.core.groupby.SeriesGroupBy.cumprod#

SeriesGroupBy.cumprod(numeric_only=False, *args, **kwargs)[源代码]#

每个组的累积乘积。

参数:
numeric_only布尔值, 默认为 False

只包含浮点数、整数、布尔列。

*argstuple

要传递给 func 的位置参数。

**kwargsdict

要传递给函数的附加/特定关键字参数,例如 numeric_onlyskipna

返回:
Series 或 DataFrame

每个组的累积乘积。与调用者相同的对象类型。

参见

Series.groupby

对一个Series应用groupby函数。

DataFrame.groupby

对DataFrame的每一行或每一列应用一个groupby函数。

例子

对于 SeriesGroupBy:

>>> lst = ["a", "a", "b"]
>>> ser = pd.Series([6, 2, 0], index=lst)
>>> ser
a    6
a    2
b    0
dtype: int64
>>> ser.groupby(level=0).cumprod()
a    6
a   12
b    0
dtype: int64

对于 DataFrameGroupBy:

>>> data = [[1, 8, 2], [1, 2, 5], [2, 6, 9]]
>>> df = pd.DataFrame(
...     data, columns=["a", "b", "c"], index=["cow", "horse", "bull"]
... )
>>> df
        a   b   c
cow     1   8   2
horse   1   2   5
bull    2   6   9
>>> df.groupby("a").groups
{1: ['cow', 'horse'], 2: ['bull']}
>>> df.groupby("a").cumprod()
        b   c
cow     8   2
horse  16  10
bull    6   9