Click or drag to resize
Accord.NET (logo)

MultipleLinearRegressionAnalysis Constructor (Double, Double, Boolean)

Note: This API is now obsolete.

Constructs a Multiple Linear Regression Analysis.

Namespace:  Accord.Statistics.Analysis
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
[ObsoleteAttribute("Please pass the 'inputs' and 'outputs' parameters to the Learn method instead.")]
public MultipleLinearRegressionAnalysis(
	double[][] inputs,
	double[] outputs,
	bool intercept = false
)
Request Example View Source

Parameters

inputs
Type: SystemDouble
The input data for the analysis.
outputs
Type: SystemDouble
The output data for the analysis.
intercept (Optional)
Type: SystemBoolean
True to use an intercept term, false otherwise. Default is false.
See Also