1

我想从 R 中的 Games Howell 事后测试中获得一个连接的信件报告。我已经使用几个选项实现了它,例如:

library(PMCMRplus)
GH_vol <- gamesHowellTest(Tree.volume ~ Rootstock, data = Olives_GH)
summaryGroup(GH_vol)

library(userfriendlyscience)
oneway(y = Olives_GH$Tree.volume, x = Olives_GH$Rootstock, posthoc = 'games-howell', posthocLetters = TRUE)

问题是我得到的连接字母报告不是按数字字段(Tree.volume)的平均值排序,而是按因子名称(Rootstock)排序。我的意思是,“a”不是分配给平均值较高的值,而是分配给按字母顺序排列的第一个值。

有谁知道如何通过平均订购它?

4

0 回答 0