I have a non-normal distribution data of two independent samples os patients divides by two groups 'control' and 'treatment'. Would like to verify if there are difference between the two groups 'control' and 'treatment' and measure this difference, so I am using the code:
wilcox.test(data.to.work$disease ~ data.to.work$group)
Ok for my test, my doubt is: I can use Cohen's d to measure de effect size?
I also did a test using the codes:
cohens_d(data.to.work$disease ~ data.to.work$group)
rcompanion::wilcoxonR(data.to.work$disease, g=data.to.work$group, ci=T)
Both give large effect size.
May I use Cohen's d ? Or is the second test the most recommended, or some other?
Tks