QuadraticDiscriminantAnalysis.TotalSeparability Property

Gets the total separability.

Definition

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

Property Value

Double

Remarks

The total separability is a single scalar value that summarizes the overall separation between all classes in the model. It is calculated as the average of all pairwise group separability measures.

This metric provides a global assessment of how well the classes can be distinguished from each other. Higher values indicate better overall class separation and suggest that the QDA model should perform well in classification tasks. Lower values suggest more overlap between classes and potentially higher classification error rates.

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

See Also