public interface FactorMethod
Modifier and Type | Method and Description |
---|---|
double |
estimateParameters()
A method for estimating parameters.
|
double |
getCommunalityAt(int i)
Returns the communality (sum of squared factor laodings) for a variable.
|
double |
getFactorLoadingAt(int i,
int j)
Return a factor loading for a particular item.
|
double[] |
getLoadingsForFactorAt(int factorID)
Returns all factor loadings for a particular factor
|
double |
getProportionOfExplainedVarianceAt(int j)
Proportion of explained variance
|
double |
getProportionOfVarianceAt(int j)
Returns the proportion of total variance for a factor.
|
double |
getSumsOfSquaresAt(int j)
Sum of squared factor loading for a particular factor.
|
double |
getUniquenessAt(int i)
Returns the variabl's uniqueness (i.e.
|
VariableName |
getVariableNameAt(int index)
Returns the name of the variable at index.
|
void |
setVariableNameAt(int index,
VariableName name) |
double estimateParameters()
double getFactorLoadingAt(int i, int j)
i
- variable index of the factor loadingj
- factor index of the loadingdouble[] getLoadingsForFactorAt(int factorID)
factorID
- position number of factor of interest.double getUniquenessAt(int i)
i
- variable index of the uniquenessdouble getCommunalityAt(int i)
i
- index of the variable for which the communality is sought.double getSumsOfSquaresAt(int j)
j
- index of the factor for which the computation is needed.double getProportionOfExplainedVarianceAt(int j)
j
- index of the factor for which the explained variance is computeddouble getProportionOfVarianceAt(int j)
j
- ndex of the factor for which the proportion of variance is computedVariableName getVariableNameAt(int index)
index
- position (zero based) of variable for which name is sought.void setVariableNameAt(int index, VariableName name)