0

我只是浪费了一整天的时间来寻找我的问题的解决方案。

简而言之,我有 2 个数据集,每个数据集有 2 个来自 wilcox_test 的样本。现在,我想测试效果大小。对于第一个数据集,我收到一个效果大小“r”,对于另一个我收到一条错误消息:

library(rcompanion)
wilcoxonPairedR(x = sport_1_4$value, g = sport_1_4$variable)

Fehler in wilcoxonZ(x = x[as.numeric(g) == 1], y = x[as.numeric(g) == 2],  : 
  'x' and 'y' must have the same length

我做了完全一样的,但它不会工作。

编辑:两个变量的 obs 数量相同。

> table(sport_1_4$variable)

sport_t1 sport_t2 sport_t3 sport_t4 
      38        0        0       38 

dataset1 - 测试 t1 和 t2

> head(sport_1_2)
  ID variable value
1  1 sport_t1     2
2  2 sport_t1     4
3  3 sport_t1     4
4  4 sport_t1     2
5  5 sport_t1     3
6  6 sport_t1     2

dataset2 - 测试 t1 和 t4

> head(sport_1_4)
  ID variable value
1  1 sport_t1     2
2  2 sport_t1     4
3  3 sport_t1     4
4  4 sport_t1     2
5  5 sport_t1     3
6  6 sport_t1     2
4

1 回答 1

0

好的,我通过将数据集复制到新的 Excel 工作表中,然后将其导入 Rstudio 来解决它。现在它起作用了......我根本没有改变任何东西。诡异的。

于 2021-02-07T14:07:02.000 回答