Maker Portal

View Original

Real-Time Graphing in Python

See this content in the original post

In data visualization, real-time plotting can be a powerful tool to analyze data as it streams into the acquisition system. Whether temperature data, audio data, stock market data, or even social media data - it is often advantageous to monitor data in real-time to ensure that instrumentation and algorithms are functioning properly. 

In this tutorial, I will outline a basic function written in Python that permits real-time plotting of data. The function is simple and straight-forward, but its powerful result allows any researcher or data analyst to take full advantage of data monitoring as it streams into the user's computer!


See this content in the original post

The GitHub repository containing the code used in this tutorial can be found at:


See this content in the original post

A few notes on the function above:

  1. line1.set_ydata(y1_data) can also be switched to line1.set_data(x_vec,y1_data) to change both x and y data on the plots.

  2. plt.pause() is necessary to allow the plotter to catch up - I've been able to use a pause time of 0.01s without any issues

  3. The user will need to return line1 to control the line as it is updated and sent back to the function

  4. The user can also customize the function to allow dynamic changes of title, x-label, y-label, x-limits, etc.

See this content in the original post

See this content in the original post

The simplest way to test the live plotter is to input random data and watch it work! I wrote a simple script that uses numpy to generate random data and plot using the function above. This example is also in the GitHub repository and is the script used to generate the .gif image shown at the top of this blog post [click here to see it again].

See this content in the original post

Notice how in the above script, I do not re-plot the x-axis data. This enables us to quickly update the y-data. This is the fast-moving advantage of the line1.set_ydata(y1_data) method as opposed to the traditional plt.plot() method. The script above could also be used to update both x and y data, but more issues arise when handling both x and y movement. The x-axis limits would need to be actively moving its bounds, as well as the y-axis limits. This is not impossible, however, I think one workaround advantage is to simply change the x-axis tick labels instead and leave the actual limits alone. To actively update the x-axis tick labels use the following method:

line1.axes.set_xticklabels(date_vector)

This will maintain the limits, the x-axis tick alignments, the bounds, but change the labels on the x-axis. 


See this content in the original post

This short blog post introduced a simple live plotting function for Python. The live plotting function is capable of producing high-speed, high-quality, real-time data visualization in Python using matplotlib and just a few lines of code. In my next post on this subject, I will introduce live visualization of words using the same method outlined above. The word visualization will mimic a visualization method called a 'word cloud' and update words based on Wikipedia updates in real-time. 

See this content in the original post

“As an Amazon Associates Program member, clicking on links may result in Maker Portal receiving a small commission that helps support future projects.”

See more in Programming:

See this content in the original post