Description Usage Arguments Value Examples
Generates a scatter plot to aid in the detection of variable genes. Scatter
plot depicts Correlation of Variance (CV) vs log10(mean gene expression).
Please use the calculateCV
function before using this function.
1 2 | plotVariableGenes(object, ngenes = NULL, label.size = 3,
point.size = 0.5, check.overlap = FALSE)
|
object |
An |
ngenes |
Select n most variable genes to plot (Optional) |
label.size |
Size of gene labels |
point.size |
Size of scatter points |
check.overlap |
Hide overlapping labels (Default: FALSE) |
A scatter plot rendered by ggplot2's geom_point function.
1 2 3 4 | em_set <- ascend::analyzed_set
em_set <- calculateCV(em_set)
variable_gene_plot <- plotVariableGenes(em_set, ngenes = 1500,
label.size = 3, point.size = 0.5, check.overlap = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.