To see the example Figures visit Cellestial Webpage.
An Interactive and Highly Customizable Single-Cell & Spatial Plotting Tool over a ggplot-like API.
Name Encuplates: Space (of Spatial), Scatters of Stars, and of course Cells.
pip install cellestialimport cellestial as clumap = cl.umap(data, size=1, axis_type="arrow")
umapand tooltips can be extended with other features..
umap = cl.umap(data, size=1, axis_type="arrow", interactive=True)umap + scale_color_hue() + ggsize(500,400)Instead of singular function names (umap), multi-grid plots requires the plural (umaps),providing predictability which guarentees the reproducibility.
Which are valid for all dimensional subsets (expression,pca,umap, tsne).
cl.umaps(
data,
keys=["leiden", "HBD", "NEAT1", "IGKC"],
ncol=2,
size=1,
color_high="red",
) + ggsize(900, 600)




