You are here

Thresholds are not in order

From https://openmx.ssri.psu.edu/thread/1443:

I wrote a simple OpenMx script to do LCA on ordinal variables. It works fine on simulated data. When I run it on real data, the estimated thresholds are not in order. I then included constraints on the thresholds (simple enough to do) so that they are monotonically increasing. This seems to work as the threshold estimates monotonically increase. From reading the manual, I was sure constraints weren't necessary.

Reporter: 
Created: 
Fri, 07/13/2012 - 11:12
Updated: 
Sat, 04/23/2016 - 09:59

Comments

While it was believed interations that disordered the thresholds be rejection), this is not the case: they routinely get out of order.

Need to re-open this issue, and either fix it, build in the lower 1s solution to OpenMx internally (convert the input thresholds matrix to an algebra which multiplies some increments by lower 1 matrix) or tell users to implement the neale "increments x lower1s" solution to guarantee threshold order (and give them a way to do this in RAM type as well).

We do check that start values are ordered:

 m1 = mxRun(m1);
Error: In model 'ACE' the thresholds in column 'ORDER_T1' of matrix/algebra 'top.threshMat' 
are not in ascending order. 

What don't error on adjacent thresholds which are identical: Seems to me this should be an error, as it makes it arbitrary which threshold a given latent score will lead too...

Perhaps set a minimum delta or something?

Believed to be fixed.

I don't think that this problem was ever fixed. It can be difficult to reproduce, however. Internally we had considered automagically adding linear inequality constraints, which in some optimizers can be specified so as to never be violated. However, this has not been implemented afaik, and would be optimizer specific.

The general and infallible solution is to respecify the model for the thresholds and use bounds on the parameters. Let L be lower triangular with the diagonal and sub diagonal elements set to 1 (the upper triangle elements are zero). Let D be a matrix of threshold deviations. The first row of this matrix should be unbounded, but rows 2...nrow are set to have a lower bound close to zero (say .001). Then the matrix product L%*%D will result in row i having elements that always are at least .001 greater than the element above it in row i-1. A code snippet illustrates:

 Dmat <- mxMatrix("Full", name="thresholdDeviations", nrow=nThresholds, ncol=nVariables,
            values=.2, free = TRUE, lbound = rep( c(-Inf,rep(.01,(nThresholds-1))) , nVariables),
            dimnames = list(c(), fruitynames))
        Lmat <- mxMatrix("Lower",nThresholds,nThresholds,values=1,free=F,name="unitLower")
        thresholds <- mxAlgebra(unitLower %*% thresholdDeviations, name="thresholdMatrix")