plot_boxplot | R Documentation |
This function creates a boxplot of cell-group proportions, optionally highlighting significant differences based on a given significance threshold.
plot_boxplot(
.data,
data_proportion,
factor_of_interest,
.cell_group,
.sample,
significance_threshold = 0.05,
my_theme
)
.data |
Data frame containing the main data. |
data_proportion |
Data frame containing proportions of cell groups. |
factor_of_interest |
A factor indicating the biological condition of interest. |
.cell_group |
The cell group to be analysed. |
.sample |
The sample identifier. |
significance_threshold |
Numeric value specifying the significance threshold for highlighting differences. Default is 0.025. |
my_theme |
A ggplot2 theme object to be applied to the plot. |
A ggplot object representing the boxplot.
# Example usage:
# plot_boxplot(.data, data_proportion, "condition", "cell_group", "sample", 0.025, theme_minimal())
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.