I want to plot several lines in a figure. All points of each line aren't available at the beginning, they become available gradually.
I want to plot something like this
Whole points for each line aren't available at the beginning, for example at t=3 points for a line is [(1,0),(2,3), (3,6)] and in t=4 a new point comes [(1,0),(2,3), (3,6), (4, 9)].
To be more clear, I don't have all points for drawing, point are given gradually. Therefore, I need to constantly update my plot in order to catch changes.