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
from __future__ import print_function, division | |
from math import sqrt | |
from scipy.special import ndtri | |
def _proportion_confidence_interval(r, n, z): | |
"""Compute confidence interval for a proportion. | |
Follows notation described on pages 46--47 of [1]. |