The mxCheckIdentification function is used to check that a model is identified. That is, the function will tell you if the model has a unique solution in parameter space. The function is most useful when applied to either (a) a model that has been run and had some NA standard errors, or (b) a model that has not been run but has reasonable starting values. In the former situation, mxCheckIdentification is used as a diagnostic after a problem was indicated. In the latter situation, mxCheckIdentification is used as a sanity check.
The method uses the Jacobian of the model expected means and the unique elements of the expected covariance matrix with respect to the free parameters. It is the first derivative of the mapping between the free parameters and the sufficient statistics for the Normal distribution. The method does not depend on data, but does depend on the current values of the free parameters. Thus, it only provides local identification, not global identification. You might get different answers about model identification depending on the free parameter values. Because the method does not depend on data, the model still could be empirically unidentified due to missing data.
The Jacobian is evaluated numerically and generally takes a few seconds, but much less than a minute.
Model identification should be accurate for models with linear or
nonlinear equality and inequality constraints. When there are
constraints, mxCheckIdentification uses the Jacobian of the summary
statistics with respect to the free parameters and the Jacobian of the
summary statistics with respect to the constraints. The combined
extended Jacobian must have rank equal to the number of free parameters
for the model to be identified. So, a model can be identified with
constraints that is not identified without constraints.
Model identification should also be accurate for multiple group models
and models with definition variables. In the case of multiple groups,
the Jacobian is computed for each group and they are concatenated:
summary statistics for each group go down the rows of the Jacobian; the
single set of free parameters go across the columns of the Jacobian. In
the case of definition variables, a new set of summary statistics is
computed for each unique set of definition variable values; thus
creating a kind of pseudo-multiple group model for each set of unique
definition variable values.
For models using definition variables, the additional arguments 'nrows'
and 'exhaustive' provide instruction for how to search for
identification. In principle, full model identification for models with
definition variables requires evaluating the Jacobian of the mapping
between the free parameters and the summary statistics for every
unique combination of definition variable values. This evaluation
can take a long time. However, in practice, the vast majority of models
are identified after evaluating one or two definition variable rows.
The current defaults attempt to capitalize on this practical situation.
By default 'mxCheckIdentification' will evaluate up to 2 unique definition
variable rows, but will stop once the model is identified. To keep
evaluating unique definition variable values until the model is
identified or you run out of rows, set nrows=Inf
. To evaluate
all unique definition variable values, set nrows=Inf
and
exhaustive=TRUE
.
When TRUE, the 'details' argument provides the names of the non-identified parameters. Otherwise, only the status and Jacobian are returned.