Axes.
semilogx
(*args, **kwargs)[source]¶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 of the concepts and parameters of plot
can be used here as well.
The additional parameters basex, subsx and nonposx control the
x-axis properties. They are just forwarded to Axes.set_xscale
.
Parameters: | basex : scalar, optional, default 10
subsx : array_like, optional
nonposx : {'mask', 'clip'}, optional, default 'mask'
|
---|---|
Returns: | lines
|
Other Parameters: | **kwargs
|