|
GeneralizedLinearRegressionGetConfidenceInterval Method
|
Gets the confidence interval for an input point.
Namespace:
Accord.Statistics.Models.Regression
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public DoubleRange GetConfidenceInterval(
double[] input,
int numberOfSamples,
double[][] informationMatrix,
double percent = 0.95
)
Public Function GetConfidenceInterval (
input As Double(),
numberOfSamples As Integer,
informationMatrix As Double()(),
Optional percent As Double = 0.95
) As DoubleRange
Request Example
View SourceParameters
- input
- Type: SystemDouble
The input vector. - numberOfSamples
- Type: SystemInt32
The number of training samples used to fit the model. - informationMatrix
- Type: SystemDouble
The information matrix obtained when training the model (see GetInformationMatrix). - percent (Optional)
- Type: SystemDouble
The prediction interval confidence (default is 95%).
Return Value
Type:
DoubleRangeSee Also