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
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v0.20.0.txt
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ Highlights include:
21
21
- Support for S3 handling now uses ``s3fs``, see :ref:`here <whatsnew_0200.api_breaking.s3>`
22
22
- Google BigQuery support now uses the ``pandas-gbq`` library, see :ref:`here <whatsnew_0200.api_breaking.gbq>`
23
23
- Switched the test framework to use `pytest <http://doc.pytest.org/en/latest>`__ (:issue:`13097`)
24
+
- The ``pandas.tools.plotting`` module has been deprecated, moved to ``pandas.plotting``. See :ref:`here <whatsnew_0200.api_breaking.plotting>` (:issue:`12548`)
24
25
25
26
26
27
Check the :ref:`API Changes <whatsnew_0200.api_breaking>` and :ref:`deprecations <whatsnew_0200.deprecations>` before updating.
@@ -557,6 +558,32 @@ Using ``.iloc``. Here we will get the location of the 'A' column, then use *posi
557
558
df.iloc[[0, 2], df.columns.get_loc('A')]
558
559
559
560
561
+
.. _whatsnew_0200.api_breaking.deprecate_plotting
562
+
563
+
Deprecate .plotting
564
+
^^^^^^^^^^^^^^^^^^^
565
+
566
+
``pandas.tools.plotting`` module has been deprecated, moving directory under the
567
+
top namespace ``pandas.plotting``. All the public plotting functions should be available
568
+
from ``pandas.plotting``.
569
+
570
+
Also, ``scatter_matrix`` function imported directly under ``pandas`` namespace is also deprecated.
571
+
Users shoud use ``pandas.plotting.scatter_matrix`` instead.
0 commit comments