Skip to content

DOC: Add missing public plotting functions to the docs #28179

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/source/reference/plotting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions pandas/plotting/_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down