Click or drag to resize

FactorAnalysisCovarianceExtraction, Rotation(DoubleMatrix, BiasType, Extraction, Rotation) Constructor

Constructs a
C#
FactorAnalysisCovariance
object from the given case data by forming the covariance matrix for the variables, extracting the factors from the covariance matrix based on the covariance between the variables and rotating the factors 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 FactorAnalysisCovariance(
	DoubleMatrix caseData,
	BiasType bias,
	Extraction factorExtraction,
	Rotation factorRotation
)

Parameters

caseData  DoubleMatrix
Data to analyze. Each column represents a variable and each row a case or observation.
bias  BiasType
Specifies whether a biased or unbiased estimate of the case data variable variance is to be used.
factorExtraction  Extraction
Object to be used for factor extraction.
factorRotation  Rotation
Object to be used for factor rotation.
See Also