Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4dbf4e commit b53b588Copy full SHA for b53b588
1 file changed
lib/matplotlib/cbook/__init__.py
@@ -1382,9 +1382,10 @@ def _check_1d(x):
1382
# This code should correctly identify and coerce to a
1383
# numpy array all pandas versions.
1384
with warnings.catch_warnings(record=True) as w:
1385
- warnings.filterwarnings("always",
1386
- category=DeprecationWarning,
1387
- module='pandas[.*]')
+ warnings.filterwarnings(
+ "always",
+ category=DeprecationWarning,
1388
+ message='Support for multi-dimensional indexing')
1389
1390
ndim = x[:, None].ndim
1391
# we have definitely hit a pandas index or series object
0 commit comments