0

我想计算 R 中 epsilon-squared 效应大小统计的置信区间。这是我用来计算 epsilon-squared 值的代码:

#set up two vectors, a numerical vector and a factor vector (grouping variable)
x=c(3,2,4,7,4,6,9,2,3,4,1,0,8,6,9,5,3,3,6,7,8,2,8,9)
y=as.factor(c(rep("cond1",12),rep("cond2",12)))

#run kruskal-wallis test
kruskal.test(x~y)
library(rcompanion)
df=data.frame(x,y)

#calculate epsilon squared
epsilonSquared(x = df$x, 
           g = df$y)

这给了我我的效果大小。但该函数只输出一个数字。请问如何计算效果大小的置信区间?

4

1 回答 1

2

你可以阅读帮助,我刚刚做了什么:

ci 如果为 TRUE,则通过引导程序返回置信区间。可能会很慢。

epsilonSquared(x = df$x, 
               g = df$y,ci = T)

  epsilon.squared lower.ci upper.ci
1           0.185  0.00479     0.54
于 2019-02-08T10:13:38.247 回答