I have this following code in order to generate scatterplots
import matplotlib.pyplot as plt
line = plt.figure()
plt.plot(xvalue, yvalue)
plt.grid(True)
plt.savefig("test.png")
plt.show()
and here is the screenshot of the plot:

I am just wondering if i could change the x-axis labels into strings. I have stored all the labels in
xlabel = ['2015/4/1', '2015/4/11', '2015/4/12', '2015/4/18', '2015/4/19'...]
Is there any function for matplotlib so that i could set x-axis labels to the values in "xlabel"?
many thx!
ALso my labels are overlapped, anything i could do to fix this problem? thx!


