I\'m creating very simple charts with matplotlib / pylab Python module. The letter \"y\" that labels the Y axis is on its side. You would expect this if the label was longer
It is very simple. After plotting the label, you can simply change the rotation:
from matplotlib import pyplot as plt plt.ion() plt.plot([1,2,3]) h = plt.ylabel('y') h.set_rotation(0) plt.draw()
Alternatively, you can pass the rotation as an argument, i.e
plt.ylabel('y',rotation=0)