我正在尝试使用ggplot2和ggpubr包以星号的形式将显着性级别添加到我的箱线图中,但我有很多比较,我只想显示重要的比较。
我尝试在stat_compare_means中使用选项hide.ns=TRUE,但它显然不起作用,这可能是ggpubr包中的错误。
此外,您看到我从成对wilcox.test比较中省略了组“PGMC4”;我怎么能把这个小组排除在kruskal.test 之外?
我的最后一个问题是显着性水平如何工作?如 * 低于 0.05,** 低于 0.025,*** 低于 0.01?ggpubr 使用的约定是什么?它是显示 p 值还是调整后的 p 值?如果是后者,调整方法是什么?吗?
##############################
##MWE
set.seed(5)
#test df
mydf <- data.frame(ID=paste(sample(LETTERS, 163, replace=TRUE), sample(1:1000, 163, replace=FALSE), sep=''),
Group=c(rep('C',10),rep('FH',10),rep('I',19),rep('IF',42),rep('NA',14),rep('NF',42),rep('NI',15),rep('NS',10),rep('PGMC4',1)),
Value=rnorm(n=163))
#I don't want to compare PGMC4 cause I have only onw sample
groups <- as.character(unique(mydf$Group[which(mydf$Group!="PGMC4")]))
#function to make combinations of groups without repeating pairs, and avoiding self-combinations
expand.grid.unique <- function(x, y, include.equals=FALSE){
x <- unique(x)
y <- unique(y)
g <- function(i){
z <- setdiff(y, x[seq_len(i-include.equals)])
if(length(z)) cbind(x[i], z, deparse.level=0)
}
do.call(rbind, lapply(seq_along(x), g))
}
#all pairs I want to compare
combs <- as.data.frame(expand.grid.unique(groups, groups), stringsAsFactors=FALSE)
head(combs)
my.comps <- as.data.frame(t(combs), stringsAsFactors=FALSE)
colnames(my.comps) <- NULL
rownames(my.comps) <- NULL
#pairs I want to compare in list format for stat_compare_means
my.comps <- as.list(my.comps)
head(my.comps)
pdf(file="test.pdf", height=20, width=25)
print(#or ggsave()
ggplot(mydf, aes(x=Group, y=Value, fill=Group)) + geom_boxplot() +
stat_summary(fun.y=mean, geom="point", shape=5, size=4) +
scale_fill_manual(values=myPal) +
ggtitle("TEST TITLE") +
theme(plot.title = element_text(size=30),
axis.text=element_text(size=12),
axis.text.x = element_text(angle=45, hjust=1),
axis.ticks = element_blank(),
axis.title=element_text(size=20,face="bold"),
legend.text=element_text(size=16)) +
stat_compare_means(comparisons=my.comps, method="wilcox.test", label="p.signif", size=14) + #WHY DOES hide.ns=TRUE NOT WORK??? WHY DOES size=14 NOT WORK???
stat_compare_means(method="kruskal.test", size=14) #GLOBAL COMPARISON ACROSS GROUPS (HOW TO LEAVE PGMC4 OUT OF THIS??)
)
dev.off()
##############################
MWE 将生成以下箱线图:
问题是:
1- 如何使 hide.ns=TRUE 工作?
2-如何增加*的大小?
3- 如何从 kruskal.test 比较中排除一个组?
4- ggpubr 使用的 * 约定是什么,显示的 p 值是否调整?
非常感谢!!
编辑
另外,做的时候
stat_compare_means(comparisons=my.comps, method="wilcox.test", p.adjust.method="BH")
我没有获得与做时相同的 p 值
wilcox.test(Value ~ Group, data=mydf.sub)$p.value
其中 mydf.sub 是 mydf 的一个子集(),用于 2 个组的给定比较。
ggpubr 在这里做什么?它如何计算 p.values?
编辑 2
请帮忙,解决方案不必与 ggpubr 一起使用(但它必须与ggplot2一起使用),我只需要能够隐藏 NS 并使星号的大小更大,以及 p 值计算相同到 wilcox.test() + p.adjust(method"BH")。
谢谢!