答案 0 :(得分:1)
如@Mikolajm所建议,您可以在label.x
函数中使用label.y
和stat_compare_means()
参数来放置文本。
label.x
参数更改文本在x轴上的位置,label.y
参数更改文本在y轴上的位置。
例如(在逻辑上没有意义),我使用了mtcars
数据集。
require(ggplot2)
require(ggpubr)
ggboxplot(mtcars, x = "am", y = "carb",
color = "am") +
stat_compare_means(method = "wilcox.test",
label.x = 1.2,
label.y = 10)
但是,如果我们将label.x = 1.2
和label.y = 10
更改为label.x = 0.6
和label.y = 6
,则图形将如下所示:
ggboxplot(mtcars, x = "am", y = "carb",
color = "am") +
stat_compare_means(method = "wilcox.test",
label.x = 0.6, label.y = 6)