plot_2nd_yaxis
- mdtools.plot.plot_2nd_yaxis(ax, x, y, ymin=None, ymax=None, ylabel='$y2$', legend_loc='best', **kwargs)[source]
Plot data to a second y-axis.
Deprecated since version 0.0.0.dev2: Use
matplotlib.axes.Axes.twinx(),matplotlib.axes.Axes.plot(),matplotlib.axes.Axes.set()andmatplotlib.axes.Axes.legend()directly.Create a twin
matplotlib.axes.Axesof an existingmatplotlib.axes.Axessharing the same x-axis usingmatplotlib.axes.Axes.twinx()and plot data to the twinAxesusingmatplotlib.axes.Axes.plot().- Parameters:
ax (
matplotlib.axes.Axes) – Thematplotlib.axes.Axesfrom which to create a twin that shares the same x-axis. Data are plotted to the created twin axes.x (
array_like) – One dimensional array containing the x data.y (
array_like) – Array of the same shape as x containing the y data.ymin (
scalar, optional) – Left limit for plotting on the secondary y-axis. The left limit may be greater than the right limit, in which case the tick values will show up in decreasing order. Default isNone, which means set the limit automatically.ymax (
scalar, optional) – Right limit for plotting on the secondary y-axis.ylabel (
str, optional) – Label for the secondary y-axis.legend_loc (
intorstr, optional) – Position of the legend. Seematplotlib.pyplot.legend()for possible arguments.kwargs (
dict, optional) – Keyword arguments to pass tomatplotlib.axes.Axes.plot(). See there for possible keyword arguments.
- Returns:
img (
list) – A list ofmatplotlib.lines.Line2Dobjects representing the plotted data.ax2 (
matplotlib.axes.Axes) – The twin axis.