I am trying to plot histogram.
plt.bar([1,2,3], [4,5,6],color="r",align="center")
I don't wanna plot the zero in the beginning of the axes. This ridiculous way to do it.
plt.yticks(range(len([1,2,3])),["None"]+[1,2,3])
Is there any good way to do that ?