用法:
Series.isin(values)
Series 中的元素是否包含在
values
中。返回一个布尔系列,显示系列中的每个元素是否与传递的
values
序列中的元素完全匹配。- values:设置或list-like
要测试的值序列。传入单个字符串将引发
TypeError
。相反,将单个字符串转换为一个元素的列表。
- Series
一系列布尔值,指示每个元素是否在值中。
- TypeError
如果
values
是一个字符串
参数:
返回:
抛出:
例子:
>>> s = pd.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(['cow', 'lama']) 0 False 1 False 2 False 3 True 4 False 5 True 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
字符串和整数是不同的,因此不可比较:
>>> pd.Series([1]).isin(['1']) 0 False dtype:bool >>> pd.Series([1.1]).isin(['1.1']) 0 False dtype:bool
相关用法
- Python pandas.Series.isna用法及代码示例
- Python pandas.Series.isnull用法及代码示例
- Python pandas.Series.iat用法及代码示例
- Python pandas.Series.iteritems用法及代码示例
- Python pandas.Series.idxmin用法及代码示例
- Python pandas.Series.idxmax用法及代码示例
- Python pandas.Series.iloc用法及代码示例
- Python pandas.Series.interpolate用法及代码示例
- Python pandas.Series.info用法及代码示例
- Python pandas.Series.items用法及代码示例
- Python pandas.Series.infer_objects用法及代码示例
- Python pandas.Series.add_prefix用法及代码示例
- Python pandas.Series.map用法及代码示例
- Python pandas.Series.max用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.to_csv用法及代码示例
- Python pandas.Series.dt.day_name用法及代码示例
- Python pandas.Series.sample用法及代码示例
- Python pandas.Series.head用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.isin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。