python – 为什么我不能使用warnings.filterwarnings使用正则表达式来抑制警告

我想使用正则表达式来抑制特定类型的警告.
警告信息是:

C:\Anaconda3\lib\site-packages\pandas\core\indexing.py:420: SettingWithcopyWarning:

A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead

See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/indexing.html#indexing-view-versus-copy 
self.obj[item] = s

我的抑制过滤器的方式:

import warnings
warnings.filterwarnings("ignore", message= ".*A value is trying to.*")

然而,它失败了.我确实尝试将警告消息的不同部分粘贴到正则表达式中但仍然失败.我想知道为什么.

解决方法:

这是你得到的错误吗?

AssertionError: message must be a string

warnings.filterwarnings只接受message参数的字符串,regex不会在那里编译.如果您确实想要抑制此错误,请执行以下操作:

import pandas as pd
warnings.simplefilter("error", pd.core.common.SettingWithcopyWarning)

否则,您可能想要查看避免SettingWithcopyWarning的方法,因为许多其他人已经解决了同样的问题:
How to deal with SettingWithCopyWarning in Pandas?

相关文章

转载:一文讲述Pandas库的数据读取、数据获取、数据拼接、数...
Pandas是一个开源的第三方Python库,从Numpy和Matplotlib的基...
整体流程登录天池在线编程环境导入pandas和xrld操作EXCEL文件...
 一、numpy小结             二、pandas2.1为...
1、时间偏移DateOffset对象DateOffset类似于时间差Timedelta...
1、pandas内置样式空值高亮highlight_null最大最小值高亮背景...