Note
Go to the end to download the full example code.
Swarm#
Swarm is a wrapper for seaborn’s swarmplot.
from marsilea.plotter import Swarm
import numpy as np
import matplotlib.pyplot as plt
_, ax = plt.subplots()
data = np.random.rand(50, 10)
Swarm(data).render(ax)

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