I can add a y label to the left y-axis using plt.ylabel, but how can I add it to the secondary y-axis?
plt.ylabel
table = sql.read_frame(query,connection)
I don't have access to Python right now, but off the top of my head:
fig = plt.figure() axes1 = fig.add_subplot(111) # set props for left y-axis here axes2 = axes1.twinx() # mirror them axes2.set_ylabel(...)