Thanks to visit codestin.com
Credit goes to github.com

Skip to content

DOC Replaced documentation with numpydoc for semilogx #7031

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 27, 2016
Merged
Changes from 1 commit
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
Prev Previous commit
DOC Removed spaces on empty lines and mixed spaced and tabs
  • Loading branch information
DoriMG authored and Your Name committed Sep 9, 2016
commit eb12a6c087c28fd2e2c75a05cf6a7a6b9e40aad1
9 changes: 5 additions & 4 deletions lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1544,11 +1544,12 @@ def loglog(self, *args, **kwargs):
def semilogx(self, *args, **kwargs):
"""
Make a plot with log scaling on the *x* axis.

Parameters
----------
basex : float, optional
Base of the *x* logarithm.
Base of the *x* logarithm. The scalar should be larger
than 1.

subsx : array_like, optional
The location of the minor xticks; *None* defaults to
Expand All @@ -1570,14 +1571,14 @@ def semilogx(self, *args, **kwargs):
:class:`~matplotlib.lines.Line2D` properties:

%(Line2D)s
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Line2D will need to be updated in order for this interpolation to work correctly.


See Also
--------
loglog : For example code and figure.

Notes
-----
*This function supports all the keyword arguments of
This function supports all the keyword arguments of
:func:`~matplotlib.pyplot.plot` and
:meth:`matplotlib.axes.Axes.set_xscale`.

Expand Down