Note
Go to the end to download the full example code.
Simple strip chart#
Simple strip chart

<matplotlib.legend.Legend object at 0x7f9d37c762d0>
import numpy as np
from aptapy.plotting import plt
from aptapy.strip import StripChart
x = np.linspace(0., 10., 100)
y = np.random.normal(size=x.shape)
chart = StripChart(label="Random data").put(x, y)
chart.plot()
plt.legend()
Total running time of the script: (0 minutes 0.226 seconds)