.. _examples-meteoinfolab-plot_types-multiple_y_axis: ******************* Multiple y axis ******************* The ``twinx()`` function was used to create a new axes from an existing axes. It make both axes have same positions, while the existing one not plot right y axis and the new one only plot right y axis. ``yaxis()`` function was used to set y axis color and its horizontal shift. Two y axis:: ax1 = axes() yaxis(ax1, color='b') t = arange(0.01, 10.0, 0.01) s1 = exp(t) plot(t, s1, 'b-', linewidth=2) xlabel('time (s)') ylabel('exp', color='b') title('Two y axis example') ax2 = twinx(ax1) yaxis(ax2, color='r') s2 = sin(2*pi*t) plot(t, s2, 'r.') ylabel('sin', color='r') .. image:: ../../../_static/two_y_axis.png Multiple y axis:: ax1 = axes(position=[0.113,0.15,0.7,0.8]) yaxis(ax1, color='b') line1 = plot([0, 1, 2], [0, 1, 2], 'b-', label="Density") xlabel('Distance') ylabel('Density', color='b') title('Mutiple Y Axis Sample') ax2 = twinx(ax1) yaxis(ax2, color='r') line2 = plot([0, 1, 2], [0, 3, 2], 'r-', label="Temperature") ylabel('Temperature', color='r') ax3 = twinx(ax1) yaxis(ax3, shift=60, color='g') line3 = plot([0, 1, 2], [50, 30, 15], 'g-', label="Velocity") ylabel('Velocity', color='g') lines = [line1, line2, line3] legend(lines) .. image:: ../../../_static/multiple_y_axis.png