+ 1
Make moveable plotted point with matplotlib
I am trying to make a simulation with matplotlib.pyplot. I am currently using a for ... in ... loop, but it is making multiple instances of the window.
2 Answers
+ 1
You need to use matplotlib.animation module. There is a good example here:
https://matplotlib.org/examples/animation/simple_anim.html
+ 1
strawdog
Thanks buddy!