79416245

Date: 2025-02-05 21:35:56
Score: 2
Natty:
Report link

Although @FiloCara 's answer is reliable, it did not work for me until I put the warning-generating code in a context:

with warnings.catch_warnings():
    warnings.simplefilter("ignore", category=pd.errors.PerformanceWarning)
    # code that generates warnings ...
Reasons:
  • Blacklisted phrase (1): did not work
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @FiloCara
Posted by: The other other Alan