Note
Go to the end to download the full example code.
Chunk#

/home/docs/checkouts/readthedocs.org/user_builds/marsilea/checkouts/v0.4.3/docs/examples/Plotters/plot_chunk.py:17: DeprecationWarning: `hsplit` will be deprecated in v0.5.0, use `cut_rows` or `group_rows` instead
h.hsplit(labels=labels, order=chunk)
import numpy as np
import marsilea as ma
from marsilea.plotter import Chunk
matrix = np.random.randn(20, 20)
h = ma.Heatmap(matrix)
chunk = ["C1", "C2", "C3", "C4"]
labels = np.random.choice(chunk, size=20)
h.hsplit(labels=labels, order=chunk)
h.add_right(Chunk(chunk, bordercolor="gray"), pad=0.1)
h.add_dendrogram("left")
h.render()
Total running time of the script: (0 minutes 0.733 seconds)