Wilcoxon Rank Sum Test
이전 댓글 표시
I have minimum, average and maximum values of an minimisation objective obtained by two different algorithms. Now to test the robustness of those algorithms how to run Wilcoxon Rank Sum Test?
댓글 수: 2
David Hill
2019년 9월 30일
Did you look at the documentation for the matlab function ranksum ?
Adam Danz
2019년 9월 30일
What David Hill said...
Here's a list of non-parametric ttests
For an independent sample ttest **with equal variances**,
- Mann-Whitney U-Test (in matlab: ranksum(x,y))
For an independent sample ttest **with unequal variances**
- Kolmogorov-smirnov test (in matlab: kstest2(x,y) for 2-sample and ktest(x) for 1 sample
For a paired ttest
- Wilcoxon Signed-Rank test (in matlab: ranksum(x,y))
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!