cafe.plot.plot_stream
cafe.plot.plot_stream
Stream Plot (Subway Map) for trajectory visualization
Visualize the distribution of cells along a trajectory in a subway-map-like format.
Inspired by phlower and STREAM ref: https://phlower.readthedocs.io/en/latest/generated/phlower.ext.plot_stream.html https://github.com/CostaLab/phlower/blob/main/phlower/external/stream.py https://github.com/pinellolab/STREAM
plot_stream(fadata, model_name=None, mode='cell', color=None, basis=None, fig_size=(10, 6), fig_legend_ncol=1, show_text=True, show_graph=True, show_legend=True, alpha=0.8, s=30, save=None, **kwargs)
Plot Stream graph (Subway Map).
Visualize the distribution of cells along a trajectory in a subway-map-like format.
Parameters
fadata : FateAnnData
FateAnnData object, must have trajectory information added via add_trajectory.
model_name : str, optional
Name of the trajectory model to use, defaults to the current model.
mode : str, optional
Plotting mode, "cell" for single-cell scatter plot, "density" for density stream plot. Default "cell".
color : str or list of str, optional
Column name(s) for coloring (obs column or gene name), defaults to cluster column.
basis : str, optional
Embedding used for computing node positions. Default "X_umap".
fig_size : tuple, optional
Figure size. Default (10, 6).
fig_legend_ncol : int, optional
Number of legend columns. Default 1.
show_text : bool, optional
Whether to show node labels. Default True (only effective when mode="cell").
show_graph : bool, optional
Whether to show trajectory graph. Default True (only effective when mode="cell").
show_legend : bool, optional
Whether to show legend. Default True (only effective when mode="cell").
alpha : float, optional
Point transparency. Default 0.8 (only effective when mode="cell").
s : int, optional
Point size. Default 30 (only effective when mode="cell").
save : bool or str, optional
If True, save to default path .cafe/{fadata.id}/img/stream_{mode}_{color}.png.
If str, save to the specified path. Default None (don't save).
**kwargs
Additional arguments passed to the underlying plotting function.
Returns
List[plt.Figure] List of generated figures.
Examples
import cafe fadata = cafe.data.read_pancreas()
Single-cell scatter plot mode
cafe.pl.plot_stream(fadata, mode="cell", color="clusters")
Density stream plot mode
cafe.pl.plot_stream(fadata, mode="density", color="clusters")
Save to default path
cafe.pl.plot_stream(fadata, mode="cell", color="clusters", save=True)
Save to custom path
cafe.pl.plot_stream(fadata, mode="cell", color="clusters", save="my_stream.png")
Source code in cafe/plot/plot_stream.py
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |