I am trying to plot multiple animated line plots on the same graph with a delay of 1 second between each line plot in matplotlib python.
My previous question: How to create a delay between mutiple animations on the same graph (matplotlib, python)
I have a list of lists: [[10,20,30],[40,50,60],[2,3,5],[200,300,500]]
I want to plot each element of the list of list as animated line plot on the same graph. Animation should plot the 1st list , and then plot the second list, then the third list and then the fourth list. They shouldn't be plotted simultaneously.
Thanks