Description Usage Arguments Details Value Methods (by class) Examples
Plot of gene expression of single cells in bivariate hexagon cells.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | plot_hexbin_gene(
sce,
type,
gene,
action,
title = NULL,
xlab = NULL,
ylab = NULL
)
## S4 method for signature 'SingleCellExperiment'
plot_hexbin_gene(
sce,
type,
gene,
action,
title = NULL,
xlab = NULL,
ylab = NULL
)
## S4 method for signature 'Seurat'
plot_hexbin_gene(
sce,
type,
gene,
action,
title = NULL,
xlab = NULL,
ylab = NULL
)
|
sce |
A |
type |
A string referring to the type of assay in the
|
gene |
A string referring to the name of one gene. |
action |
A strings pecifying how gene expression of observations in
binned hexagon cells are to be summarized. Possible actions are
|
title |
A string containing the title of the plot. |
xlab |
A string containing the title of the x axis. |
ylab |
A string containing the title of the y axis. |
This function plots the expression of any gene in the hexagon cell
representation calculated with make_hexbin
. The chosen gene
expression is summarized by one of four actions prop_0
, mode
,
mean
and median
:
prop_0
Returns the proportion of observations in the bin greater than 0. The associated meta data column needs to be numeric.
mode
Returns the mode of the observations in the bin. The associated meta data column needs to be numeric.
mean
Returns the mean of the observations in the bin. The associated meta data column needs to be numeric.
median
Returns the median of the observations in the bin. The associated meta data column needs to be numeric.
A ggplot2{ggplot}
object.
SingleCellExperiment
: Plot of gene expression into hexagon cell for
SingleCellExperiment object.
Seurat
: Plot of gene expression into hexagon cell for
Seurat object.
1 2 3 4 5 6 | # For Seurat object
library(Seurat)
data("pbmc_small")
pbmc_small <- make_hexbin(pbmc_small, 10, dimension_reduction = "PCA")
plot_hexbin_gene(pbmc_small, type = "counts", gene = "TALDO1",
action = "prop_0")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.