matplotlib.pyplot.
semilogy
(*args, **kwargs)[source]¶Make a plot with log scaling on the y axis.
Call signatures:
semilogy([x], y, [fmt], data=None, **kwargs)
semilogy([x], y, [fmt], [x2], y2, [fmt2], ..., **kwargs)
This is just a thin wrapper around plot
which additionally changes
the y-axis to log scaling. All of the concepts and parameters of plot
can be used here as well.
The additional parameters basey, subsy and nonposy control the
y-axis properties. They are just forwarded to Axes.set_yscale
.
Parameters: |
|
---|---|
Returns: |
|
Other Parameters: |
|