So I am writing a program that is analyzing data over a series of dates (the dates are my xcoords). while my y coords behave and the axis will spread out nicely, the x coords all clump up which makes it hard to read and I think also splits the two sets of data that I apply to the plot. My x coords are a series of numbers going from 47 to 695 approximately.
#scatter points
plt.scatter(dayArray1, newArray1, c='b', s = 10)
plt.scatter(dayArray2, newArray2, c='r', s = 10)