用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。