R语言ggplot2添加统计学显著性
2022-06-13 本文已影响0人
CrimsonUMO
用到
stat_compare_means
函数
两种用法:
一、用aes函数映射
stat_compare_means(aes(group = group),
method = "wilcox.test",
hide.ns = F,na.rm = T,
label="p.signif")
这个方法可以在组内进行比较
二、用comparison添加
stat_compare_means(method="wilcox.test",
comparison=comparison,#必须是个List
hide.ns = F,
label="p.signif")
这个只能在组间进行比较,comparison的赋值必须是x轴上的值
“长度为2的向量列表。向量中的条目要么是x轴上2个值的名称,要么是对应于要比较的感兴趣组索引的2个整数。”
A list of length-2 vectors. The entries in the vector are either the names of 2 values on the x-axis or the 2 integers that correspond to the index of the groups of interest, to be compared.