Principal Component Analysis.Loadings Matrix Property
Gets the matrix of component loadings.
Definition
Namespace: Extreme.Statistics.Multivariate
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
A matrix.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public Matrix<double> LoadingsMatrix { get; }
Property Value
Matrix<Double>A matrix.
Remarks
The loadings of a component are the coefficients ofthe component in the original data. result in the observation. In other words: they are the values of the observation in terms of the principal components.
Exceptions
InvalidOperationException | The model has not been fitted. Call the Fit() method first. |