8000 Fix method/class links in plot_date docstring by dstansby · Pull Request #8864 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fix method/class links in plot_date docstring #8864

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 1 commit into from
Jul 11, 2017
Merged
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
10 changes: 5 additions & 5 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1456,15 +1456,15 @@ def plot_date(self, x, y, fmt='o', tz=None, xdate=True, ydate=False,

Note if you are using custom date tickers and formatters, it
may be necessary to set the formatters/locators after the call
to meth:`plot_date` since meth:`plot_date` will set the
to :meth:`plot_date` since :meth:`plot_date` will set the
default tick locator to
class:`matplotlib.dates.AutoDateLocator` (if the tick
:class:`matplotlib.dates.AutoDateLocator` (if the tick
locator is not already set to a
class:`matplotlib.dates.DateLocator` instance) and the
:class:`matplotlib.dates.DateLocator` instance) and the
default tick formatter to
class:`matplotlib.dates.AutoDateFormatter` (if the tick
:class:`matplotlib.dates.AutoDateFormatter` (if the tick
formatter is not already set to a
class:`matplotlib.dates.DateFormatter` instance).
:class:`matplotlib.dates.DateFormatter` instance).


Parameters
Expand Down
0