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.
2 parents d0cdf97 + 1652994 commit 6f0a313Copy full SHA for 6f0a313
1 file changed
lib/matplotlib/cbook/__init__.py
@@ -2081,9 +2081,10 @@ def _check_1d(x):
2081
# This code should correctly identify and coerce to a
2082
# numpy array all pandas versions.
2083
with warnings.catch_warnings(record=True) as w:
2084
- warnings.filterwarnings("always",
2085
- category=DeprecationWarning,
2086
- module='pandas[.*]')
+ warnings.filterwarnings(
+ "always",
+ category=DeprecationWarning,
2087
+ message='Support for multi-dimensional indexing')
2088
2089
ndim = x[:, None].ndim
2090
# we have definitely hit a pandas index or series object
0 commit comments