用法:
Series.isin(values)
检查值是否包含在 Series 中。
- values:设置或list-like
要测试的值序列。传入单个字符串将引发 TypeError。相反,将单个字符串转换为一个元素的列表。
- result:Series
一系列布尔值,指示每个元素是否在值中。
- TypeError
如果值是一个字符串
参数:
返回:
抛出:
例子:
>>> import cudf >>> s = cudf.Series(['lama', 'cow', 'lama', 'beetle', 'lama', ... 'hippo'], name='animal') >>> s.isin(['cow', 'lama']) 0 True 1 True 2 True 3 False 4 True 5 False Name: animal, dtype: bool
将单个字符串作为
s.isin('lama')
传递将引发错误。改为使用一个元素的列表:>>> s.isin(['lama']) 0 True 1 False 2 True 3 False 4 True 5 False Name: animal, dtype: bool
字符串和整数是不同的,因此不可比较:
>>> cudf.Series([1]).isin(['1']) 0 False dtype: bool >>> cudf.Series([1.1]).isin(['1.1']) 0 False dtype: bool
相关用法
- Python cudf.Series.isnull用法及代码示例
- Python cudf.Series.isna用法及代码示例
- Python cudf.Series.interleave_columns用法及代码示例
- Python cudf.Series.ceil用法及代码示例
- Python cudf.Series.update用法及代码示例
- Python cudf.Series.max用法及代码示例
- Python cudf.Series.head用法及代码示例
- Python cudf.Series.reindex用法及代码示例
- Python cudf.Series.min用法及代码示例
- Python cudf.Series.nlargest用法及代码示例
- Python cudf.Series.to_frame用法及代码示例
- Python cudf.Series.mask用法及代码示例
- Python cudf.Series.notnull用法及代码示例
- Python cudf.Series.rmod用法及代码示例
- Python cudf.Series.map用法及代码示例
- Python cudf.Series.nsmallest用法及代码示例
- Python cudf.Series.data用法及代码示例
- Python cudf.Series.lt用法及代码示例
- Python cudf.Series.product用法及代码示例
- Python cudf.Series.add用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.Series.isin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。