Possible to plot ylabels and yticks on left and right using twinx and pyplot
using PyPlot # Generate some data x = 1:10 y1 = rand(10) y2 = rand(10) # Create the first plot fig, ax1 = subplots() ax1.plot(x, y1, ‘b-‘) ax1.set_xlabel(“X”) ax1.set_ylabel(“Y1″, color=”b”) ax1.tick_params(“y”, colors=”b”)