Skip to content

Commit

Permalink
Wilcoxon Rank Sum Test
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasalmeida committed Oct 10, 2023
1 parent 22303e0 commit f580f8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/testFunctions.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ async function rankSumTest(parms){
// return `the comparison of population [${parms.population1}] with [${parms.population2}] by a rank sum test assigns a p = ${st.cumulativeStdNormalProbability(z)} to the null hypothesis that they are similar`
let wcTest = wilcoxon(parms.population1,parms.population2)
wcTest.pValue
return `the comparison of population [${parms.population1}] with [${parms.population2}] by a rank sum test assigns a p = ${wcTest.pValue} to the null hypothesis that they are similar`
return `the comparison of population [${parms.population1}] with [${parms.population2}] by Wilcoxon Rank Sum Test assigns a p = ${wcTest.pValue} to the null hypothesis that they are similar`
}

const rankSumTestDescription = { // at NCI Shady Grove
Expand Down

0 comments on commit f580f8b

Please sign in to comment.