LinearDiscriminantAnalysis.CanonicalStructureMatrix Property

Gets the canonical structure matrix of the discriminant analysis.

Definition

Namespace: Numerics.NET.Statistics.Multivariate
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.2.0
C#
public Matrix<double> CanonicalStructureMatrix { get; }

Property Value

Matrix<Double>

Remarks

The structure matrix contains the correlations between the variables and the discriminant functions. It is also called the canonical loading or discriminant loadings matrix.

The discriminant functions play a role similar to latent variables in factor analysis. The correlations are loadings analogous to factor loadings.

This property is only available when the model is fitted. It throws an InvalidOperationException if the model is empty or deployed.

See Also