用法:
DataFrame.mod(other, axis='columns', level=None, fill_value=None)
获取数据帧或系列和其他元素的模除法(二元运算符
mod
)。等效于
frame % other
,但支持用 fill_value 替换其中一个输入中的缺失数据。使用反向版本rmod
。- other:标量、序列、系列或数据帧
任何单元素或多元素数据结构,或list-like 对象。
- axis:整数或字符串
系列仅支持
0
,数据帧支持1
或columns
- fill_value:浮点数或无,默认无
在计算之前使用此值填充现有的缺失 (NaN) 值以及成功对齐 DataFrame 所需的任何新元素。如果两个相应的 DataFrame 位置中的数据都丢失,则结果将丢失。
- DataFrame或Series
算术运算的结果。
参数:
返回:
例子:
DataFrame
>>> import cudf >>> df = cudf.DataFrame({'angles': [0, 3, 4], ... 'degrees': [360, 180, 360]}, ... index=['circle', 'triangle', 'rectangle']) >>> df % 100 angles degrees circle 0 60 triangle 3 80 rectangle 4 60 >>> df.mod(100) angles degrees circle 0 60 triangle 3 80 rectangle 4 60
Series
>>> import cudf >>> series = cudf.Series([10, 20, 30]) >>> series 0 10 1 20 2 30 dtype: int64 >>> series.mod(4) 0 2 1 0 2 2 dtype: int64
相关用法
- Python cudf.DataFrame.mode用法及代码示例
- Python cudf.DataFrame.median用法及代码示例
- Python cudf.DataFrame.multiply用法及代码示例
- Python cudf.DataFrame.mul用法及代码示例
- Python cudf.DataFrame.mask用法及代码示例
- Python cudf.DataFrame.merge用法及代码示例
- Python cudf.DataFrame.mean用法及代码示例
- Python cudf.DataFrame.memory_usage用法及代码示例
- Python cudf.DataFrame.min用法及代码示例
- Python cudf.DataFrame.max用法及代码示例
- 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.to_pandas用法及代码示例
- Python cudf.DataFrame.take用法及代码示例
- Python cudf.DataFrame.tail用法及代码示例
- Python cudf.DataFrame.rfloordiv用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.DataFrame.mod。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。