Factor Class

Represents a factor in a factor analysis.

Definition

Namespace: Extreme.Statistics.Multivariate
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public class Factor
Inheritance
Object  →  Factor

Remarks

Use the Factor class to access the properties of a factor returned by a factor analysis computed by the FactorAnalysis class. The FactorAnalysis class has two methods: GetUnrotatedFactors() and GetRotatedFactors(), which return read-only collections of factors before and after rotation, respectively.

A Factor object cannot be created independently. It is always created by the factor analysis object. Factor objects are read-only.

Properties

CumulativeProportionOfVariance Gets the proportion of variance explained by the factor and all more significant components.
Eigenvalue Gets the eigenvalue corresponding to the factor.
EigenvalueDifference Gets the difference between the eigenvalues of the unrotated factor and the next most significant factor.
Index Gets the index of the factor in the collection.
Loadings Gets a vector that contains the factor loadings or pattern.
ProportionOfVariance Gets the proportion of variance explained by the factor.
Structure Gets a vector that contains the factor structure.
VarianceExplained Gets the total variance explained by the factor.

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
ToString Returns a string representation of the factor.
(Overrides Object.ToString())

See Also