I wrote the following code to create a graph in matplotlib:
plt.plot(batches, meanCell)
plt.show()
The problem I am having is that there are hundreds of pieces of data and it looks like it is trying to put every single piece of data in the axis of the graph:
How would I go about formatting the axis to put less labels so the numbers are legible?