We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72dc33f commit fd1c66cCopy full SHA for fd1c66c
doc/source/whatsnew/v0.24.1.rst
@@ -71,6 +71,11 @@ Bug Fixes
71
-
72
73
74
+**Visualization**
75
+
76
+- Fixed the warning for implicitly registered matplotlib converters not showing. See :ref:`whatsnew_0211.converters` for more (:issue:`24963`).
77
78
79
**Other**
80
81
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