HypothesisTest.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 test parameter for the specified confidence level.

GetConfidenceInterval

Returns the confidence interval for the test parameter for the default confidence level.
C#
public Interval GetConfidenceInterval()

Return Value

Interval

GetConfidenceInterval(Double)

Returns the confidence interval for the test parameter for the specified confidence level.
C#
public virtual 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

Remarks

confidenceLevel must be a value between 0 and 1. Common values are 0.01, 0.05, and 0.1.

See Also