-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f8d89f5
commit 293f089
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ async function rankSumTest(parms){ | |
// get simple-statistics library | ||
let st=await import('https://esm.sh/[email protected]') | ||
let z = st.tTestTwoSample(parms.population1,parms.population2) | ||
return `p = ${st.cumulativeStdNormalProbability(z)}` | ||
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` | ||
} | ||
|
||
const rankSumTestDescription = { // at NCI Shady Grove | ||
|