Uses of Class
org.apache.commons.math3.stat.interval.ConfidenceInterval

Packages that use ConfidenceInterval
Package
Description
Classes providing binomial proportion confidence interval construction.
  • Uses of ConfidenceInterval in org.apache.commons.math3.stat.interval

    Modifier and Type
    Method
    Description
    AgrestiCoullInterval.createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    BinomialConfidenceInterval.createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    ClopperPearsonInterval.createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    NormalApproximationInterval.createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    WilsonScoreInterval.createInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    IntervalUtils.getAgrestiCoullInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create an Agresti-Coull binomial confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    IntervalUtils.getClopperPearsonInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a Clopper-Pearson binomial confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.
    IntervalUtils.getNormalApproximationInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a binomial confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level using the Normal approximation to the binomial distribution.
    IntervalUtils.getWilsonScoreInterval(int numberOfTrials, int numberOfSuccesses, double confidenceLevel)
    Create a Wilson score binomial confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, successes and confidence level.