Open djnavarro opened 3 years ago
Suppose we have input variables with different sample variance:
x <- c(1, 2, 3, 4, 5, 6) y <- c(2, 1, 0, 4, 6, 3)
These should be different?
cohensD(x, y, method = "pooled") cohensD(x, y, method = "unequal")
Currently both return the same value. Might be a problem?
Suppose we have input variables with different sample variance:
These should be different?
Currently both return the same value. Might be a problem?