當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cudf.Series.cummax用法及代碼示例


用法:

Series.cummax(axis=None, skipna=True, *args, **kwargs)

返回 Series 或 DataFrame 的累積最大值。

參數

axis: {index (0), columns(1)}

要應用的函數的軸。

skipna: bool, default True

排除 NA/空值。如果整行/列為 NA,則結果將為 NA。

返回

Series或DataFrame

例子

Series

>>> import cudf
>>> ser = cudf.Series([1, 5, 2, 4, 3])
>>> ser.cummax()
0    1
1    5
2    5
3    5
4    5

DataFrame

>>> import cudf
>>> df = cudf.DataFrame({'a': [1, 2, 3, 4], 'b': [7, 8, 9, 10]})
>>> df.cummax()
   a   b
0  1   7
1  2   8
2  3   9
3  4  10

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.Series.cummax。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。