Polynomial Regression Model.Get Confidence Bandwidth Method
Definition
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
Overload List
Get | Gets the width of the 95% confidence band around the best-fit curve at the specified point. |
Get | Gets the width of the 95% confidence band around the best-fit curve at the specified point. |
Get | Gets the width of the confidence band around the best-fit curve at the specified point. |
Get | Gets the width of the confidence band around the best-fit curve at the specified point. |
GetConfidenceBandwidth(Double)
public double GetConfidenceBandwidth(
double x
)
Parameters
- x Double
- The point at which to evaluate the bandwidth.
Return Value
DoubleThe confidence interval for the predicted value at x.
Remarks
This method returns the distance from the predicted value to the upper and lower bound of the confidence interval for the value predicted by the model. This interval is more narrow than the interval returned by GetPredictionBandwidth(Double), which is the interval for a new observation at x.
GetConfidenceBandwidth(Double, Double)
public double GetConfidenceBandwidth(
double x,
double confidenceLevel
)
Parameters
- x Double
- The point at which to evaluate the bandwidth.
- confidenceLevel Double
- The confidence level of the confidence band.
Return Value
DoubleThe confidence interval for the predicted value at x.
Remarks
This method returns the distance from the predicted value to the upper and lower bound of the confidence interval for the value predicted by the model. This interval is more narrow than the interval returned by GetPredictionBandwidth(Double, Double), which is the interval for a new observation at x.