QuadraticDiscriminantFunction.Mean Property

Gets the mean vector associated with this function.

Definition

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

Property Value

Vector<Double>

Remarks

The mean vector represents the center (centroid) of the group in feature space. Each element corresponds to the average value of a feature for observations in this group.

When analyzing new observations, you can compare their feature values to the mean vector to understand how typical they are for this group. This can be particularly useful in anomaly detection scenarios where you want to identify observations that deviate significantly from the group's typical profile.

See Also