Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. > c <- c(1.01,1.02,1.03,1.04,1.05,1.06,1.07,1.08,1.09,1.1)
  2. > d <- c(1.5, 1.51,1.52,1.53,1.54,1.55,1.56,1.57,1.58,1.59, 1.6)
  3. > wilcox.test(c,d)
  4.  
  5. Wilcoxon rank sum test
  6.  
  7. data: c and d
  8. W = 0, p-value = 5.67e-06
  9. alternative hypothesis: true location shift is not equal to 0
  10.  
  11. > cliff.delta(c,d)
  12.  
  13. Cliff's Delta
  14.  
  15. delta estimate: -1 (large)
  16. 95 percent confidence interval:
  17. inf sup
  18. NaN NaN
  19. >
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement