Click or drag to resize

DoubleFactorAnalysisExtraction, Rotation(DoubleSymmetricMatrix, BiasType, Extraction, Rotation) Constructor

Constructs a
C#
DoubleFactorAnalysis
object from the given matrix data. Factors are extracted from the matrix of varaible relations (correlation or covariance) and then rotated to maximize the relationship between the variables and some of the factors.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleFactorAnalysis(
	DoubleSymmetricMatrix matrixData,
	BiasType bias,
	Extraction factorExtraction,
	Rotation factorRotation
)

Parameters

matrixData  DoubleSymmetricMatrix
Data to analyze. Should be either the correlation or covariance matrix.
bias  BiasType
Specifies whether a biased or unbiased estimate of variances is to be used.
factorExtraction  Extraction
Object to be used for factor extraction.
factorRotation  Rotation
Object to be used for factor rotation.
See Also