We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba7b895 commit dd16aa7Copy full SHA for dd16aa7
doc/source/whatsnew/v0.24.1.rst
@@ -74,6 +74,11 @@ Bug Fixes
74
75
- Bug in :func:`merge` when merging by index name would sometimes result in an incorrectly numbered index (:issue:`24212`)
76
77
+**Visualization**
78
+
79
+- Fixed the warning for implicitly registered matplotlib converters not showing. See :ref:`whatsnew_0211.converters` for more (:issue:`24963`).
80
81
82
**Other**
83
84
-
pandas/plotting/_core.py
@@ -39,7 +39,7 @@
39
else:
40
_HAS_MPL = True
41
if get_option('plotting.matplotlib.register_converters'):
42
- _converter.register(explicit=True)
+ _converter.register(explicit=False)
43
44
45
def _raise_if_no_mpl():
0 commit comments