用法:
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
相关用法
- Python cudf.DataFrame.cummax用法及代码示例
- Python cudf.DataFrame.cumsum用法及代码示例
- Python cudf.DataFrame.cumprod用法及代码示例
- Python cudf.DataFrame.count用法及代码示例
- Python cudf.DataFrame.clip用法及代码示例
- Python cudf.DataFrame.ceil用法及代码示例
- Python cudf.DataFrame.copy用法及代码示例
- Python cudf.DataFrame.cos用法及代码示例
- Python cudf.DataFrame.mod用法及代码示例
- Python cudf.DataFrame.isin用法及代码示例
- Python cudf.DataFrame.rmul用法及代码示例
- Python cudf.DataFrame.apply用法及代码示例
- Python cudf.DataFrame.exp用法及代码示例
- Python cudf.DataFrame.drop用法及代码示例
- Python cudf.DataFrame.where用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.cummin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。