Click or drag to resize
Accord.NET (logo)

MultipleLinearRegression Constructor (Int32, Boolean)

Note: This API is now obsolete.

Creates a new Multiple Linear Regression.

Namespace:  Accord.Statistics.Models.Regression.Linear
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please do not pass a boolean value as the intercept value.")]
public MultipleLinearRegression(
	int inputs,
	bool intercept
)
Request Example View Source

Parameters

inputs
Type: SystemInt32
The number of inputs for the regression.
intercept
Type: SystemBoolean
True to use an intercept term, false otherwise. Default is false.
See Also