Uses of Class
org.hipparchus.stat.interval.ConfidenceInterval

Packages that use ConfidenceInterval
Package
Description
Utilities to calculate binomial proportion confidence intervals.
  • Uses of ConfidenceInterval in org.hipparchus.stat.interval

    Modifier and Type
    Method
    Description
    BinomialProportion.getAgrestiCoullInterval(int numberOfTrials, double probabilityOfSuccess, 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, probability of success and confidence level.
    BinomialProportion.getClopperPearsonInterval(int numberOfTrials, double probabilityOfSuccess, 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, probability of success and confidence level.
    BinomialProportion.getNormalApproximationInterval(int numberOfTrials, double probabilityOfSuccess, double confidenceLevel)
    Create a binomial confidence interval using normal approximation for the true probability of success of an unknown binomial distribution with the given observed number of trials, probability of success and confidence level.
    BinomialProportion.getWilsonScoreInterval(int numberOfTrials, double probabilityOfSuccess, double confidenceLevel)
    Create an Wilson score binomial confidence interval for the true probability of success of an unknown binomial distribution with the given observed number of trials, probability of success and confidence level.