Package | Description |
---|---|
org.hipparchus.stat.interval |
Utilities to calculate binomial proportion confidence intervals.
|
Modifier and Type | Method | Description |
---|---|---|
static ConfidenceInterval |
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.
|
static ConfidenceInterval |
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.
|
static ConfidenceInterval |
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.
|
static ConfidenceInterval |
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.
|
Copyright © 2016–2018 Hipparchus.org. All rights reserved.