5

我正在尝试在 yaxis 上创建一个带有计数(MedMean)的 ggplot 和在 xaxis 上的各种独立样本(Site_Name)的箱线图。

ggplot(medianlist,aes(x=reorder(Site_Name,MedMean,FUN=median),y=MedMean))+
geom_boxplot()

我想将 Tukey 的重要字母添加到框中。

谢谢

4

1 回答 1

4

使用agricolae::HSD.test你可以做

library(dplyr)
library(agricolae)
library(ggplot2)
iris.summarized = iris %>% group_by(Species) %>% summarize(Max.Petal.Length=max(Petal.Length))
hsd=HSD.test(aov(Petal.Length~Species,data=iris), "Species", group=T)
ggplot(iris,aes(x=reorder(Species,Petal.Length,FUN = median),y=Petal.Length))+geom_boxplot()+geom_text(data=iris.summarized,aes(x=Species,y=0.2+Max.Petal.Length,label=hsd$groups$groups),vjust=0)

在此处输入图像描述

于 2018-04-24T01:10:01.723 回答