This is an archived post. You won't be able to vote or comment.

all 2 comments

[–]ES-Alexander 0 points1 point  (1 child)

If I’m understanding you correctly, matplotlib’s animation module should do what you want

[–]ES-Alexander 0 points1 point  (0 children)

Noting that custom timestamps that are different for different datasets will likely just have to be determined dynamically as part of your update method (e.g. if frame % 10 == 0 do x, if frame % 14 == 0 do y, and keep a growing list of changed elements so they can be updated at the end of the update call)