我对数据集使用了分层聚类方法,并创建了3个聚类,并将它们作为变量添加到我的数据集中。 我想对三个群集(clusterID)及其各自的变量执行Wilcoxon Mann Whitney测试。
这是数据集
答案 0 :(得分:1)
这应该做到。
来源1:https://arxiv.org/pdf/1706.03409
# Clustered Wilcox test
clusWilcox.test(x ~ grp + cluster(cid), dat.cl, method = "rgl")
来源2:https://www.statmethods.net/stats/nonparametric.html
# independent 2-group Mann-Whitney U Test
wilcox.test(y~A)
# where y is numeric and A is A binary factor
# independent 2-group Mann-Whitney U Test
wilcox.test(y,x) # where y and x are numeric
# dependent 2-group Wilcoxon Signed Rank Test
wilcox.test(y1,y2,paired=TRUE) # where y1 and y2 are numeric
下次请提供一个reproducible示例。