We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
highest_expr_genes
1 parent 7e53cc6 commit d348605Copy full SHA for d348605
1 file changed
src/scanpy/plotting/_qc.py
@@ -70,6 +70,22 @@ def highest_expr_genes(
70
-------
71
If `show==False` a :class:`~matplotlib.axes.Axes`.
72
73
+ Examples
74
+ --------
75
+ .. plot::
76
+ :context: close-figs
77
+
78
+ import scanpy as sc
79
+ adata = sc.datasets.pbmc3k()
80
+ sc.pl.highest_expr_genes(adata)
81
82
+ Show only the top 10 genes
83
84
85
86
87
+ sc.pl.highest_expr_genes(adata, n_top=10)
88
89
"""
90
import seaborn as sns # Slow import, only import if called
91
0 commit comments