This function creates a 2D interval plot for mean-variance association, highlighting significant differences based on a given significance threshold.
plot_2D_intervals(
.data,
significance_threshold = 0.05,
test_composition_above_logit_fold_change = attr(.data,
"test_composition_above_logit_fold_change")
)
Data frame containing the main data.
Numeric value specifying the significance threshold for highlighting differences. Default is 0.025.
A positive integer. It is the effect threshold used for the hypothesis test. A value of 0.2 correspond to a change in cell proportion of 10% for a cell type with baseline proportion of 50%. That is, a cell type goes from 45% to 50%. When the baseline proportion is closer to 0 or 1 this effect thrshold has consistent value in the logit uncontrained scale.
A ggplot object representing the 2D interval plot.
# Example usage:
# plot_2D_intervals(.data, "cell_group", theme_minimal(), 0.025)