Note
Go to the end to download the full example code.
Range#
Range is a plotter that displays range between two values.
from marsilea.plotter import Range
import numpy as np
import matplotlib.pyplot as plt
_, ax = plt.subplots()
data = np.random.randint(1, 100, (10, 2))
Range(data).render(ax)

Total running time of the script: (0 minutes 0.333 seconds)