QuadraticDiscriminantAnalysis.ErrorRates Property

Gets the error rates.

Definition

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

Property Value

Matrix<Double>

Remarks

The error rates matrix contains the estimated probabilities of misclassification between each pair of classes. The element (i,j) represents the probability of misclassifying an observation from class i as belonging to class j.

These rates are theoretical estimates based on the fitted model parameters and assume normality within each class. They provide insight into which classes are most likely to be confused with each other and can help identify potential problematic class pairs in the classification.

See Also