QuickLinearArbitraryBaseRegressionGetConfidenceBand(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 (e.g. 0.95 for a 95% confidence band).
Return Value
IEnumerableValueTupleDouble,
Double,
Double,
Double
An enumeration of tuples containing the x value, the lower confidence bound, the mean prediction, and the upper confidence bound.
See Also