| [ Web Proxy ] |
| Viewing: https://matplotlib.org/stable/api/_as_gen/../toolkits/../_as_gen/matplotlib.axes.Axes.semilogx.html | [Back] [Original] |
Make a plot with log scaling on the x-axis.
Call signatures:
semilogx([x], y, [fmt], data=None, **kwargs)
semilogx([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
This is just a thin wrapper around plot which additionally changes
the x-axis to log scaling. All the concepts and parameters of plot can
be used here as well.
The additional parameters base, subs, and nonpositive control the
x-axis properties. They are just forwarded to Axes.set_xscale.
Base of the x logarithm.
The location of the minor xticks. If None, reasonable locations
are automatically chosen depending on the number of decades in the
plot. See Axes.set_xscale for details.
Non-positive values in x can be masked as invalid, or clipped to a very small positive number.
All parameters supported by plot.
Line2DObjects representing the plotted data.
matplotlib.axes.Axes.semilogx#| Web Proxy Viewer | New URL | Original Page |