I'm having trouble adding xticks to my line chart. I am using the following code:
plt.xticks(range(12), np.array(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']), rotation=0)
It looks like the data is plotting, except that each entry is going directly on top of the other at something like index[0] of the x axis xtick.
I am not sure how to solve this. Any suggestions?