Iam trying to show three months data , but the first month data is starting from 28 so the graph is starting from 28. But for the next month after 27 days, graph is coming at initail point that is 28. How to set the initial value of x axis.
I want x-axis data linear from 1- 30.
plt.plot(d1_x,mean_d1)
plt.plot(d2_x,mean_d2)
plt.plot(d3_x,mean_d3)
plt.plot(d_x,mean_d,linewidth=3.0)
plt.xlabel(year)
plt.ylabel('Temperature')
plt.grid(True)
plt.shoe()