Plot live data that updates in real time using matplotlib backend
Project description
live_plotter
Plot live data that updates in real time using matplotlib backend
Installing
Install:
pip install live_plotter
Usage
In this library, we have two axes of variation. The first axis of variation is using either LivePlotter
or LivePlotterGrid
. LivePlotter
creates 1 plot, while LivePlotterGrid
creates a grid of plots. The second axis of variation is using either LivePlotterGrid
or FastLivePlotterGrid
. LivePlotterGrid
is more flexible and dynamic, but this results in slower updates. FastLivePlotterGrid
requires that the user specify the number of plots in the figure from the beginning, but this allows it to update faster by modifying an existing plot rather than creating a new plot from scratch. Please refer to the associated example code for more details.
Lastly, you can add save_to_file_on_close=True
to save the figure to a file when the live plotter is deleted (either out of scope or end of script). You can add save_to_file_on_exception=True
to save the figure to a file when an exception occurs. Note this feature is experimental.
Options:
-
LivePlotter
-
LivePlotterGrid
-
FastLivePlotter
-
FastLivePlotterGrid
Live Plotter
Fast Live Plotter
Example Usage of LivePlotter
import numpy as np
from live_plotter import LivePlotter
live_plotter = LivePlotter(default_title="sin")
x_data = []
for i in range(25):
x_data.append(2 * i)
live_plotter.plot(x_data=np.array(x_data), y_data=np.sin(x_data))
Example Usage of FastLivePlotter
import numpy as np
from live_plotter import FastLivePlotter
live_plotter = FastLivePlotter(title="sin")
x_data = []
for i in range(25):
x_data.append(2 * i)
live_plotter.plot(x_data=np.array(x_data), y_data=np.sin(x_data))
Example Usage of LivePlotterGrid
import numpy as np
from live_plotter import LivePlotterGrid
live_plotter_grid = LivePlotterGrid(default_title="sin")
x_data = []
for i in range(25):
x_data.append(i)
live_plotter_grid.plot_grid(
y_data_list=[np.sin(x_data), np.cos(x_data)],
title=["sin", "cos"],
)
Example Usage of FastLivePlotterGrid
import numpy as np
from live_plotter import FastLivePlotterGrid
live_plotter_grid = FastLivePlotterGrid(title=["sin", "cos"], n_rows=2, n_cols=1)
x_data = []
for i in range(25):
x_data.append(i)
live_plotter_grid.plot_grid(
y_data_list=[np.sin(x_data), np.cos(x_data)],
)
Example Usage of FastLivePlotterGrid
using from_desired_n_plots
(recommended method for more complex use-cases)
import numpy as np
from live_plotter import FastLivePlotterGrid
y_data_dict = {
"exp(-x/10)": [],
"ln(x + 1)": [],
"x^2": [],
"4x^4": [],
"ln(2^x)": [],
}
plot_names = list(y_data_dict.keys())
live_plotter_grid = FastLivePlotterGrid.from_desired_n_plots(
title=plot_names, desired_n_plots=len(plot_names)
)
for i in range(25):
y_data_dict["exp(-x/10)"].append(np.exp(-i / 10))
y_data_dict["ln(x + 1)"].append(np.log(i + 1))
y_data_dict["x^2"].append(np.power(i, 2))
y_data_dict["4x^4"].append(4 * np.power(i, 4))
y_data_dict["ln(2^x)"].append(np.log(np.power(2, i)))
live_plotter_grid.plot_grid(
y_data_list=[np.array(y_data_dict[plot_name]) for plot_name in plot_names],
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for live_plotter-0.0.6-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86131962c8958e87fa4b9cbbd4cb3851d19815d73b5835e9bb446f81d67e21dd |
|
MD5 | 27c92fdaa26baa16ffc3c03f863a229c |
|
BLAKE2b-256 | 43d1b1c1a7dffb5804bd45c70511168780a14386ce6c06d499548d0bab55b7d8 |