QuickLinearRegressionGetConfidenceBand(IEnumerableDouble, Double) Method |
Gets the confidence band of the prediction for multiple x-values.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic 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,
DoubleEnumeration 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