Click or drag to resize
Accord.NET (logo)

IDiscriminantAnalysis Interface

Common interface for discriminant analysis.

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

The IDiscriminantAnalysis type exposes the following members.

Properties
  NameDescription
Public propertyClassifications
Gets the classification labels (the dependent variable) 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

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

When the dependent variable is a numerical quantity, the class of analysis methods is known as regression analysis.

See Also