This function creates a series of 1D interval plots for cell-group effects, highlighting significant differences based on a given significance threshold.
plot_1D_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 combined plot of 1D interval plots.
# Example usage:
# plot_1D_intervals(.data, "cell_group", 0.025, theme_minimal())