Click or drag to resize
Accord.NET (logo)

IRegressionAnalysis Interface

Common interface for regression analysis.

Namespace:  Accord.Statistics.Analysis
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public interface IRegressionAnalysis : IMultivariateAnalysis, 
	IAnalysis
Request Example View Source

The IRegressionAnalysis type exposes the following members.

Properties
  NameDescription
Public propertyOutputs
Gets the dependent variable value for each of the source input points.
Public propertySource
Source data used in the analysis.
(Inherited from IMultivariateAnalysis.)
Top
Methods
  NameDescription
Public methodCompute
Computes the analysis using given source data and parameters.
(Inherited from IAnalysis.)
Top
Remarks

Regression analysis attempt to express one numerical dependent variable as a combinations of other features or measurements.

When the dependent variable is a category label, the class of analysis methods is known as discriminant analysis.

See Also