在箱形图之间包括文本

时间:2014-09-09 09:25:26

标签: r text legend boxplot

我想在每对箱形图之间加入pvalues(pvaul)。

pval

V1
0.003
0.05
0.001

boxplot(count~spray,data = InsectSprays,axes = F,ylim = c(0,30))

enter image description here

我希望在输出中有类似的东西: enter image description here

一些想法?谢谢!

1 个答案:

答案 0 :(得分:1)

以下会这样做。将cex更改为磅值。

x<-c(1,2,2,3,3,3,4,4,4,5,5,6)  
y<-c(3,4,5,5,6,6,6,7,8)  

boxplot(x,y)  
legend('top',legend=c("0.05"), cex=.90, bty= "n")