Created
July 7, 2019 10:31
-
-
Save mauricioaniche/2aa9738381c0ae3e57204d2b36263aa1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> library(effsize) | |
> a <- c(1,1,1,1,1,1,1,1,1,1,1,1,1,1) | |
> b <- c(1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1) | |
> wilcox.test(a) | |
Wilcoxon signed rank test with continuity correction | |
data: a | |
V = 105, p-value = 0.0002105 | |
alternative hypothesis: true location is not equal to 0 | |
Warning message: | |
In wilcox.test.default(a) : | |
não é possível computar o valor de p exato com o de desempate | |
> cliff.delta(a,b) | |
Cliff's Delta | |
delta estimate: -1 (large) | |
95 percent confidence interval: | |
inf sup | |
NaN NaN |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment