demand: if there are 1000 pieces of data and 1000 points every day for a total of 1000 days, and if you put the data of 1000 * 100days in a view, you can"t see the specific performance of the data intuitively. Is there any way to achieve a similar function by looking at 1000 pieces of data at a time, and then by clicking on the data on the next page, can Matplotlib achieve such a function?
x = [1,2,3]
day1 = [1,2,3]
day2 = [2,4,6]
......
dayn = [100,200,300]
plt.plot(x,dayn ,color="red")
how to draw a picture day by day, and only see the data of one day at a time