Represents a factor in a factor analysis.
SystemObject Extreme.Statistics.MultivariateFactor
Namespace:
Extreme.Statistics.Multivariate
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
The Factor type exposes the following members.
| Name | Description |
---|
 | 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.
|
Top
| Name | Description |
---|
 | Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
 | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
 | GetHashCode | Serves as the default hash function. (Inherited from Object.) |
 | GetType | Gets the Type of the current instance. (Inherited from Object.) |
 | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
 | ToString |
Returns a string representation of the factor.
(Overrides ObjectToString.) |
Top
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.
Reference