gpt4 book ai didi

r - 将 Tukey 的重要性字母添加到箱线图中

转载 作者:行者123 更新时间:2023-12-04 11:15:43 26 4
gpt4 key购买 nike

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

ggplot(medianlist,aes(x=reorder(Site_Name,MedMean,FUN=median),y=MedMean))+
geom_boxplot()
我想将 Tukey 的意义字母添加到框中。
谢谢

最佳答案

使用 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)

enter image description here

关于r - 将 Tukey 的重要性字母添加到箱线图中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48625620/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com