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
- In order to improve tab-completion, Pandas does not include most deprecated attributes when introspecting a pandas object using ``dir`` (e.g. ``dir(df)``).
188
187
To see which attributes are excluded, see an object's ``_deprecations`` attribute, for example ``pd.DataFrame._deprecations`` (:issue:`28805`).
189
188
- The returned dtype of ::func:`pd.unique` now matches the input dtype. (:issue:`27874`)
189
+
- Changed the default configuration value for ``options.matplotlib.register_converters`` from ``True`` to ``"auto"`` (:issue:`18720`).
190
+
Now, pandas custom formatters will only be applied to plots created by pandas, through :meth:`~DataFrame.plot`.
191
+
Previously, pandas' formatters would be applied to all plots created *after* a :meth:`~DataFrame.plot`.
192
+
See :ref:`units registration <whatsnew_1000.matplotlib_units>` for more.
190
193
-
191
194
195
+
192
196
.. _whatsnew_1000.api.documentation:
193
197
194
198
Documentation Improvements
@@ -221,6 +225,27 @@ with migrating existing code.
221
225
Removal of prior version deprecations/changes
222
226
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
223
227
228
+
.. _whatsnew_1000.matplotlib_units:
229
+
230
+
**Matplotlib unit registration**
231
+
232
+
Previously, pandas would register converters with matplotlib as a side effect of importing pandas (:issue:`18720`).
233
+
This changed the output of plots made via matplotlib plots after pandas was imported, even if you were using
234
+
matplotlib directly rather than rather than :meth:`~DataFrame.plot`.
235
+
236
+
To use pandas formatters with a matplotlib plot, specify
0 commit comments