Click or drag to resize

FactorAnalysisCorrelationExtraction, Rotation(DoubleMatrix, BiasType) Constructor

Constructs a
C#
FactorAnalysisCorrelation
object from the given case data by forming the correlation matrix for the variables, extracting the factors from the correlation matrix based on the correlation coefficients of the variables and rotating the factors to maximize the relationship between the variables and some of the factors. Factor extraction will be performed by an instance of the
C#
Extraction
class type parameter constructed with no arguments, and factor rotation will be performed by an instance of the
C#
Rotation
class type parameter constructed with no arguments.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public FactorAnalysisCorrelation(
	DoubleMatrix caseData,
	BiasType bias
)

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.
See Also