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

var value
0 0 9
1 0 4
2 0 4
3 0 0
4 0 3
.. ... ...
95 9 8
96 9 7
97 9 4
98 9 2
99 9 4
[100 rows x 2 columns]
{'x': 'var', 'y': 'value'}
Total running time of the script: (0 minutes 0.541 seconds)