Last active
October 22, 2019 20:25
-
-
Save z-------------/da1c0968c4fed913f3702e541c1f0591 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const Z = 1.65; // z_a/2 (a = 0.95) | |
const Z2 = Math.pow(Z, 2); | |
const w = (p, n) => (p + Z2 / (2 * n) - Z * Math.sqrt((p * (1 - p) + Z2 / (4 * n)) / n)) / (1 + Z2 / n); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment