Let's imagine I have this command
library(ggpubr)
ggboxplot(ToothGrowth, x = "supp", y = "len",
color = "supp", palette = "jco",
add = "jitter")
p + stat_compare_means(method = "t.test")
I would like to plot y values as a calculated value: 2^len and to leave compare means on len original values.
Any help?
Not sure whether I got you right but you can add a new column with the calculated value to your data, use this new var inside
ggboxplot
, while passing the orginal variable tostat_compare_means
via themapping
: