OneSampleChiSquareTest.GetConfidenceInterval Method

Definition

Namespace: Extreme.Statistics.Tests
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

GetConfidenceInterval() Returns the confidence interval for the test parameter for the default confidence level.
GetConfidenceInterval(Double) Returns the confidence interval for the variance of the population for the specified confidence level.

OneSampleChiSquareTest.GetConfidenceInterval(Double)

Returns the confidence interval for the variance of the population for the specified confidence level.
C#
public override Interval GetConfidenceInterval(
	double confidenceLevel
)

Parameters

confidenceLevel  Double
A number between 0 and 1 indicating the confidence level. A value of 0.95 corresponds to a confidence level of 95%.

Return Value

Interval
An Interval containing a lower and upper bound for the variance.

Exceptions

ArgumentOutOfRangeException

confidenceLevel is less than zero or greater than 1.

See Also