Gets one element of the matrix of standardized direct effects, giving the standardized direct effect of one variable on another. As an alternative, you can use GetStandardizedDirectEffectsMatrix to get the entire matrix of standardized direct effects.
Syntax
result = object.GetStandardizedDirectEffectsElement (rowVariableName, columnVariableName)
result = object.GetStandardizedDirectEffectsElement (rowVariable, columnVariable)
The GetStandardizedDirectEffectsElement method syntax has the following parts:
Part |
Description |
result |
One element of the matrix of standardized direct effects, giving the standardized direct effect of one variable on another. |
object |
An object of type CValue. |
rowVariableName |
(String) The name of the "dependent" variable for which you want to estimate the standardized direct effect of some other variable. |
columnVariableName |
(String) The name of the "independent" variable whose standardized direct effect on some other variable you want to estimate. |
rowVariable |
(An object of type Variable) The "dependent" variable for which you want to estimate the standardized direct effect of some other variable. |
columnVariable |
(An objet of type Variable) The "independent" variable whose standardized direct effect on some other variable you want to estimate. |