Gets one element of the matrix of factor score weights, giving the regression weight applied to one of the observed variables in predicting one of the latent variables. As an alternative, you can use GetFactorScoreWeightsMatrix to get the entire matrix of factor score weights.
Syntax
result = object.GetFactorScoreWeightsElement (rowVariableName, columnVariableName)
result = object.GetFactorScoreWeightsElement (rowVariable, columnVariable)
The GetFactorScoreWeightsElement method syntax has the following parts:
Part |
Description |
result |
The regression weight. |
object |
An object of type CValue. |
rowVariableName |
(String) The name of one (predicted) latent variable. |
columnVariableName |
(String) The name of one observed variable (which acts as a predictor). |
rowVariable |
(An object of type Variable) A (predicted) latent variable. |
columnVariable |
(An object of type Variable) An observed variable (which acts as a predictor). |