Click or drag to resize

QuickLinearRegressionGetConfidenceBand(IEnumerableDouble, Double) Method

Gets the confidence band of the prediction for multiple x-values.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public IEnumerable<(double x, double yLower, double yMean, double yUpper)> GetConfidenceBand(
	IEnumerable<double> xdata,
	double confidenceLevel
)

Parameters

xdata  IEnumerableDouble
The x values.
confidenceLevel  Double
The confidence level.

Return Value

IEnumerableValueTupleDouble, Double, Double, Double
Enumeration with the x values, the lower value of the confidence band, the mean value of the prediction, and the upper value of the confidence band.
See Also