You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of v3.8.1 (or perhaps earlier), the following raises an error: warnings.filterwarnings("ignore", category = matplotlib.cbook.MatplotlibDeprecationWarning)
AttributeError: module 'matplotlib.cbook' has no attribute 'MatplotlibDeprecationWarning'
The following adjustment may work for multiple versions of Matplotlib: try: warnings.filterwarnings("ignore", category = matplotlib.cbook.MatplotlibDeprecationWarning) except: warnings.filterwarnings("ignore", category = matplotlib.MatplotlibDeprecationWarning)
The text was updated successfully, but these errors were encountered:
As of v3.8.1 (or perhaps earlier), the following raises an error:
warnings.filterwarnings("ignore", category = matplotlib.cbook.MatplotlibDeprecationWarning)
AttributeError: module 'matplotlib.cbook' has no attribute 'MatplotlibDeprecationWarning'
The following adjustment may work for multiple versions of Matplotlib:
try: warnings.filterwarnings("ignore", category = matplotlib.cbook.MatplotlibDeprecationWarning) except: warnings.filterwarnings("ignore", category = matplotlib.MatplotlibDeprecationWarning)
The text was updated successfully, but these errors were encountered: