|
GeneralizedLinearRegression Constructor (ILinkFunction, Double, Double)
|
Note: This API is now obsolete.
Creates a new Generalized Linear Regression Model.
Namespace:
Accord.Statistics.Models.Regression
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please use the default constructor and set the Weights and StandardErrors properties instead.")]
public GeneralizedLinearRegression(
ILinkFunction function,
double[] coefficients,
double[] standardErrors
)
<ObsoleteAttribute("Please use the default constructor and set the Weights and StandardErrors properties instead.")>
Public Sub New (
function As ILinkFunction,
coefficients As Double(),
standardErrors As Double()
)
Request Example
View SourceParameters
- function
- Type: Accord.Statistics.LinksILinkFunction
The link function to use. - coefficients
- Type: SystemDouble
The coefficient vector. - standardErrors
- Type: SystemDouble
The standard error vector.
See Also