Simple strip chart#

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)

Gallery generated by Sphinx-Gallery