From 617a06e5cc981f57797088389770ead2979908f8 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Tue, 27 Aug 2019 17:07:47 +0100 Subject: [PATCH 1/2] DOC: Add missing public plotting functions to the docs --- doc/source/reference/plotting.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/source/reference/plotting.rst b/doc/source/reference/plotting.rst index 7615e1d20f5e2..95657dfa5fde5 100644 --- a/doc/source/reference/plotting.rst +++ b/doc/source/reference/plotting.rst @@ -13,10 +13,14 @@ The following functions are contained in the `pandas.plotting` module. :toctree: api/ andrews_curves + autocorrelation_plot bootstrap_plot + boxplot deregister_matplotlib_converters lag_plot parallel_coordinates + plot_params radviz register_matplotlib_converters scatter_matrix + table From d369e70ca18606824b48bea3c5486772b7788216 Mon Sep 17 00:00:00 2001 From: Marc Garcia Date: Sat, 31 Aug 2019 10:47:11 +0100 Subject: [PATCH 2/2] Fixing failing docstrings --- pandas/plotting/_misc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandas/plotting/_misc.py b/pandas/plotting/_misc.py index 7ed0ffc6d0115..a8e86d9dfa997 100644 --- a/pandas/plotting/_misc.py +++ b/pandas/plotting/_misc.py @@ -417,8 +417,8 @@ def autocorrelation_plot(series, ax=None, **kwds): Parameters ---------- - series: Time series - ax: Matplotlib axis object, optional + series : Time series + ax : Matplotlib axis object, optional kwds : keywords Options to pass to matplotlib plotting method