plot_distribution_expression generates plots that help to compare the distribution
of expression levels through various developmental stages or cell types, highlighting each stage with
distinct colors. By default, a log transformation is applied to the expression values.
plot_distribution_expression(
phyex_set,
show_identities = TRUE,
show_strata = FALSE,
log_transform = TRUE,
seed = 123
)A ggplot2 object showing expression levels distributions across identities
A PhyloExpressionSet object (BulkPhyloExpressionSet or ScPhyloExpressionSet).
Logical, whether to show identity-specific distributions.
Logical, whether to show stratum-specific distributions.
Logical, whether to apply log transformation to expression values (default: TRUE).
Seed for reproducible color selection.
Apply a square root transformation to enhance the visualization of differences
in the distributions: plot_distribution_expression(transform_counts(phyex_set, sqrt))
Filipa Martins Costa