search for “does-not-contain” on a dataframe in pandas
问题来源:做项目时,想拿到不符合条件的所有数据,比如:通话类型有好多种(主叫、被叫、呼转……),现在想分析所有非主叫数据,那么问题就来了。
方法一:df[~df.col.str.contains(word)]
1 | "A": ["Hello", "this", "World", "apple"]}) df = pd.DataFrame({ |
注意:
- 似乎
df[~(df.A.str.contains("Hello") | (df.A.str.contains("World")))]
比上面使用正则,速度会快点- 获取“非”数据的条数:
(~df.col3.str.contains('u|z')).sum()
方法二:
1 | df[df["col"].str.contains('this'|'that')==False] |
方法三:
1 | "A": ["Hello", "this", "World", "apple"]}) df = pd.DataFrame({ |