Is it possible to model censored data in OpenMx?
Posted on
rabil
Joined: 01/14/2010
The data I have are censored at a value that is constant across all subjects. So y is Normal except that all values at or above 15 were coded as 15. I've created a simple LCA in OpenMx that works (treats the censored data as if it were simply Normal) but the censored data affect the detection of clusters. I'd like to model the data as truncated. I'm familiar with thresholds for ordinal data but it's not clear to me if OpenMx can handle truncated Normal data where y* = y if y <= 15 and y* = 15 if y > 15.
It can I think
1. Model a single latent variable which causes, with path=1, two variables, one is ordinal and one is continuous. For those individuals with censored scores, they are missing (NA) on the continuous variable, and vice-versa for those with the continuous variable scored (<15) - they are marked as missing on the ordinal variable. I think this is simplest but tbh I've never tried it.
2. Separate out into two groups the data - in one group the uncensored cases, and in the other the censored ones (all scored 1 on an ordinal variable after mxFactor()'d into 0:1). You will have to be careful with constraints in this case, as the covariance of y with anything else in the censored group will be undefined unless this is equated to that of the uncensored group. Basically, the same expected covariances & means should be used for the two groups.
3. Do something explicit with omxMnor() to evaluate the likelihood for cases with censored data. Probably more difficult than either 1 or 2, but perhaps of more general utility for complex selection/censoring mechanisms.
HTH
Log in or register to post comments
In reply to It can I think by neale
Thanks, I will try to
Log in or register to post comments
In reply to It can I think by neale
OK, I've set up the censored
Log in or register to post comments
I didn't mean truncated - I
Log in or register to post comments