用法:
Series.lt(other, level=None, fill_value=None, axis=0)
小于,按元素(二元运算符 lt)。
- other:系列或标量值
- fill_value:无或值
计算前填充空值的值。如果两个相应系列位置中的数据为空,则结果将为空
- 框架
操作的结果。
参数:
返回:
例子:
DataFrame
>>> left = cudf.DataFrame({ ... 'a': [1, 2, 3], ... 'b': [4, 5, 6], ... 'c': [7, 8, 9]} ... ) >>> right = cudf.DataFrame({ ... 'a': [1, 2, 3], ... 'b': [4, 5, 6], ... 'd': [10, 12, 12]} ... ) >>> left.lt(right) a b c d 0 False False <NA> <NA> 1 False False <NA> <NA> 2 False False <NA> <NA> >>> left.lt(right, fill_value=7) a b c d 0 False False False True 1 False False False True 2 False False False True
Series
>>> a = cudf.Series([1, 2, 3, None, 10, 20], ... index=['a', 'c', 'd', 'e', 'f', 'g']) >>> a a 1 c 2 d 3 e <NA> f 10 g 20 dtype: int64 >>> b = cudf.Series([-10, 23, -1, None, None], ... index=['a', 'b', 'c', 'd', 'e']) >>> b a -10 b 23 c -1 d <NA> e <NA> dtype: int64 >>> a.lt(b, fill_value=-10) a False b True c False d False e <NA> f False g False dtype: bool
相关用法
- Python cudf.Series.le用法及代码示例
- Python cudf.Series.last用法及代码示例
- Python cudf.Series.label_encoding用法及代码示例
- Python cudf.Series.log用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
- Python cudf.Series.notnull用法及代码示例
- Python cudf.Series.isnull用法及代码示例
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.map用法及代码示例
- Python cudf.Series.nsmallest用法及代码示例
- Python cudf.Series.data用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.lt。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。