Description Usage Arguments Value See Also Examples
Use the output of calculate_cvs
or bin_scdata
and plot a feature
mean expression x coefficient of variation scatter plot. Mean expression is represented as
log10(mean + 1)
. Each dot represents a feature.
Means and coefficient of variations were obtained across single cells.
Optionally, colours each dot according to the defined bins of features.
Optionally, adds a density2d geom.
1 2 |
df |
A |
density |
A boolean. Should a |
colourByBin |
A boolean. Should feature be coloured by bin? Need a |
density_color |
Colour of the density2d curves. |
... |
Further arguments are passed to |
A ggplot2 plot.
1 2 3 4 5 6 7 8 9 10 | library(magrittr)
scData_hESC %>%
calculate_cvs %>%
plot_mean_variance(colourByBin = FALSE)
scData_hESC %>%
calculate_cvs %>%
define_top_genes(window_size = 100) %>%
bin_scdata(window_size = 1000) %>%
plot_mean_variance
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.