View source: R/plot_hexbin_meta_plus.R
plot_hexbin_meta_plus | R Documentation |
Plot of meta data with annotation of single cell data in bivariate hexagon cells.
plot_hexbin_meta_plus(
sce,
col1,
col2,
action,
no = 1,
colors = NULL,
title = NULL,
xlab = NULL,
ylab = NULL,
expand_hull = 3,
na.rm = FALSE,
...
)
sce |
A |
col1 |
A string referring to the name of one column in the meta data of sce by which to make the outlines. Note that this should be a factor or a character. |
col2 |
A string referring to the name of one column in the meta data of sce specifying what to color hexagons by. |
action |
A string specifying how meta data as specified in col2 of
observations in binned hexagon cells are to be summarized. Possible
actions are |
no |
An integer specifying which level to plot of the column. Only in
effect when |
colors |
A vector of strings specifying which colors to use for plotting the different levels in the selected column of the meta data. |
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. |
expand_hull |
A numeric value determining the expansion of the line marking different clusters. |
na.rm |
Logical indicating whether NA values should be removed. |
... |
Additional arguments passed on to
|
This function plots any meta data in the hexagon cell
representation calculated with make_hexbin
as well as at the
same time representing outlines of clusters. The chosen gene
expression is summarized by one of four actions prop_0
,
mode
, mean
and median
:
prop
Returns the proportion of each level or unique character in the bin. The associated meta data column needs to be a factor or character.
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.
# For SingleCellExperiment object
library(TENxPBMCData)
library(scater)
tenx_pbmc3k <- TENxPBMCData(dataset = "pbmc3k")
rm_ind <- calculateAverage(tenx_pbmc3k) < 0.1
tenx_pbmc3k <- tenx_pbmc3k[-rm_ind, ]
colData(tenx_pbmc3k) <- cbind(colData(tenx_pbmc3k), perCellQCMetrics(tenx_pbmc3k))
tenx_pbmc3k <- logNormCounts(tenx_pbmc3k)
tenx_pbmc3k <- runPCA(tenx_pbmc3k)
tenx_pbmc3k <- make_hexbin(tenx_pbmc3k, 20, dimension_reduction = "PCA")
tenx_pbmc3k$random <- factor(sample(1:3, ncol(tenx_pbmc3k), replace = TRUE))
tenx_pbmc3k$random <- as.factor(tenx_pbmc3k$random)
plot_hexbin_meta_plus(tenx_pbmc3k, col1 = "random", col2 = "total", action = "median")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.