You are here

Revision of errors from Sun, 09/27/2009 - 06:38

Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.

Wiki home page

General strategies for locating errors

  • Use the traceback() function in R after an error occurs.It will print out the sequence of function calls that lead to the error.

Elements of @output$status

Each of the output codes should report an appropriate error message at the end of evaluation of the mxRun() statement.

     <h4>@output$status[[1]]</h4>
This status element is returned from the optimizer (NPSOL). 
A value of 0 means a successful optimization--no error returned.
A value of 1 means that an optimal solution was found, but that the sequence of iterates did not converge.  There are several reasons this can happen, including starting at the correct values.  It generally does not indicate a problem. These estimates can generally be considered correct solutions, so this code is labeled (Mx status GREEN).
A value of &minus;1 means that the optimizer found itself stuck in a location where the objective function could not be calculated, and could not find a way out. This most often happens if the starting values make the calculation impossible.
A value of 2 or 3 means that the bounds or constraints, respectively, could not be satisfied.
A value of 4 means that the iteration limit was reached, with no solution found. You can use mxOptions() to set a higher iteration limit, or just run mxRun() using the output &ndash;it will restart from the most recent set of estimates, and make another run of the same number of iterations.
A value of 6 means that optimality conditions could not be reached, and the optimizer could find no way to improve the estimate.  It often implies either a mistake in the model specification or starting values in an intractable range. The estimates resulting from this run are NOT optimal estimates, and should not be treated as solutions, so this code is labeled (Mx status RED).

Any other status codes should be reported.

<h4>@output$status[[2]]</h4>
output$status[[2]] returns the error code from OpenMx, which is usually &minus;1. This indicates that some aspect of the objective calculation could not be completed at the current location. 

    <h4>@output$status[[3]]</h4>
    The third element of status provides detailed information on why the objective function could not be calculated. Examples are:

        @output$status[[3]] [CHARSXP: "Covariance matrix is not positive-definite."]
        <ul>
            <li>Look at your starting values. if you have used starting values 1s, you are building an initial expected covariance that is exactly singular. At the first iteration, OpenMx can't invert the expected covariance matrix, and crashes.</li>
            <li><strong>Solution</strong>: Try changing your starting values (say, by making all of the covariances and free regressions .5) and see if it runs.</li>
        </ul>

Error messages and their meaning

Note, while R coders often use the period character inside variable names, this is not legal in OpenMx, which uses this character to specify the container model for variables.

"Argument is missing, with no default"

  • Variations include:
  • Error in single.na(to) : argument is missing, with no default

  • Typical cause: A leading or trailing comma in your code makes R think that you wanted to pass in a parameter, but left it empty (hence "missing, with not default")
    • Examples:
    • leading comma
      to=c(,'x','y','z')
    • trailing comma
      mxMatrix("Name", nrow=3,ncol=3,free=TRUE, values=.5,)
                  
    • Cure: remove the errant comma

    Error in convertVFN(... NAs introduced by coercion

    • Whenever you see NAs being introduced by coercion, suspect that you have the wrong type of value for a parameter: For instance, perhaps you are setting a number to string or vice versa... the coercion will fail, leaving an NA, which R warns you about.
    • Example:
      #You say:

                  mxMatrix(type = "Full", nrow = 1, ncol = 1, free = FALSE, 
                  values = "l1", labels = "aa", 
                  lbound = 0, ubound = 2, name = "la"),
              
    • We try and convert the character "l1" to a numeric value, can't, return an NA... hence the error: NAs induced by coercion.

    • The error:
                  Warning messages:
                  1: In convertVFN(values, free, labels, lbound, ubound, nrow, ncol) :
                  NAs introduced by coercion...
              
    • Solution: in this case, set the value to a numeric, (and remember that to equate values, you set the labels to be the same)