使用“facet_wrap”函数时出现“stat_compare_means”问题
Posted
技术标签:
【中文标题】使用“facet_wrap”函数时出现“stat_compare_means”问题【英文标题】:Problem with 'stat_compare_means' when using the 'facet_wrap' function 【发布时间】:2021-11-04 21:24:42 【问题描述】:我正在尝试创建一个像下面这样的多面图。但是,统计数据始终只应用于其中一个图。是否有一种解决方法可以保持图形外观相同,但同时向两者添加统计信息?
这是我正在使用的代码
ggplot(dat, aes(x=`Treatment`,y=`Endostatin`, fill=Treatment))+
geom_boxplot(outlier.alpha = 0.25, outlier.color = "red") +
geom_point(alpha = 0.25, size = 2 ) +
facet_wrap(~Mode, scale="free") +
stat_compare_means(comparisons = my_comparisons) +
theme(axis.text.x = element_text(angle = 20))
【问题讨论】:
【参考方案1】:你应该单独添加stat_compare_means
my_comparisons1 <- list(c("SHAM+vehicle", "TAC+vehicle"), c("TAC+vehicle", "TAC+relaxin"), c("TAC_vehicle", "TAC+Enalapril"))
my_comparisons2 <- list(c("TAC+vehicle", "TAC+relaxin")
stat_compare_means(comparisons = my_comparisons1 ) +
stat_compare_means(comparisons = my_comparisons2 )
【讨论】:
感谢您的建议。但是,使用 'scale="free" 选项时,多个 'stat_compare_means' 无法按预期工作。以上是关于使用“facet_wrap”函数时出现“stat_compare_means”问题的主要内容,如果未能解决你的问题,请参考以下文章
R语言ggplot2可视化分面图使用facet_wrap函数和facet_grid函数实战