我怎样才能在熊猫中控制住表演?
我已经试过了,但是它给了我一个warnings.simplefilter(action='ignore', category=PerformanceWarning)

最佳答案

PerformanceWarning不是内置的警告类,因此不能在category参数中直接调用它。您可以尝试以下代码:

import pandas as pd
warnings.simplefilter(action='ignore', category=pd.errors.PerformanceWarning)

我不知道如何重现PerformanceWarning,但我测试了类似于“setingwithcopywarning”pandas警告的方法,结果成功了。如果有用的话告诉我。

08-16 03:38