Click or drag to resize
Accord.NET (logo)

GeneralizedLinearRegressionGetPredictionStandardError Method

Gets the standard error of the prediction for a particular input vector.

Namespace:  Accord.Statistics.Models.Regression
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public double GetPredictionStandardError(
	double[] input,
	double[][] informationMatrix
)
Request Example View Source

Parameters

input
Type: SystemDouble
The input vector where the standard error of the prediction should be computed.
informationMatrix
Type: SystemDouble
The information matrix obtained when training the model (see GetInformationMatrix).

Return Value

Type: Double
The standard error of the prediction given for the input point.
See Also