pandas 获取不符合条件的dataframe
程序员文章站
2022-07-12 13:54:18
...
search for “does-not-contain” on a dataframe in pandas
问题来源:做项目时,想拿到不符合条件的所有数据,比如:通话类型有好多种(主叫、被叫、呼转……),现在想分析所有非主叫数据,那么问题就来了。
方法一:df[~df.col.str.contains(word)]
>>> df = pd.DataFrame({"A": ["Hello", "this", "World", "apple"]})
>>> df.A.str.contains("Hello|World")
0 True
1 False
2 True
3 False
Name: A, dtype: bool
>>> ~df.A.str.contains("Hello|World")
0 False
1 True
2 False
3 True
Name: A, dtype: bool
>>> df[~df.A.str.contains("Hello|World")]
A
1 this
3 apple
[2 rows x 1 columns]
注意:
- 似乎df[~(df.A.str.contains("Hello") | (df.A.str.contains("World")))]
比上面使用正则,速度会快点
- 获取“非”数据的条数:(~df.col3.str.contains('u|z')).sum()
方法二:
df[df["col"].str.contains('this'|'that')==False]
>>> df = pd.DataFrame({"A": ["Hello", "this", "World", "apple"]})
>>> df[df['A'].str.contains("Hello|World")==False]
A
1 this
3 apple
# 多个条件情况下:
# df[df["col1"].str.contains('this|that')==False and df["col2"].str.contains('foo|bar')==True]
方法三:
>>> df = pd.DataFrame({"A": ["Hello", "this", "World", "apple"]})
>>> df['A'].str.contains(r'^(?:(?!Hello|World).)*$')
0 False
1 True
2 False
3 True
Name: A, dtype: bool
>>> df[df['A'].str.contains(r'^(?:(?!Hello|World).)*$')]
A
1 this
3 apple
作者:Chihwei_hsu
来源:http://chihweihsu.com
Github:https://github.com/HsuChihwei
上一篇: B - 排列2
下一篇: Python标准库学习笔记3:算法
推荐阅读
-
python pandas 对series和dataframe的重置索引reindex方法
-
pandas.dataframe中根据条件获取元素所在的位置方法(索引)
-
在Pandas中DataFrame数据合并,连接(concat,merge,join)的实例
-
对Pandas DataFrame缺失值的查找与填充示例讲解
-
解决pandas.DataFrame.fillna 填充Nan失败的问题
-
Pandas:DataFrame对象的基础操作方法
-
pandas将DataFrame的列变成行索引的方法
-
pandas把dataframe转成Series,改变列中值的类型方法
-
Pandas 对Dataframe结构排序的实现方法
-
在pandas中一次性删除dataframe的多个列方法