Parameter<T>.GetConfidenceInterval Method

Gets the confidence interval for the estimated value at the specified confidence level.

Definition

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public virtual Interval<T> 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<T>
An Interval structure.

Exceptions

ArgumentOutOfRangeException

confidenceLevel is less than zero or greater than 1.

See Also