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


Python cudf.DataFrame.cummin用法及代碼示例


用法:

DataFrame.cummin(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.cummin()
0    1
1    1
2    1
3    1
4    1

DataFrame

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

相關用法


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