1

I have a script that produces real time data, is it possible to plot all of this data and show a moving curve as data is acquired using matplotlib?

octain
  • 964
  • 3
  • 10
  • 24
  • 2
    I think that this has already been answered [here](http://stackoverflow.com/questions/11874767/real-time-plotting-in-while-loop-with-matplotlib) and you can also read [here](http://www.instructables.com/id/Plotting-real-time-data-from-Arduino-using-Python-/) for implementation with Arduino. – Budo Zindovic Dec 06 '15 at 00:14

1 Answers1

1

Matplotlib supports animations. The easiest is to look at some of the examples.

Mike Müller
  • 82,630
  • 20
  • 166
  • 161