Skip to content
Prev 10167 / 20628 Next

MCMCglmm and left-censored data

Hi,

If you add:

data$ymax<-ifelse(data$y <= log(0.4), log(0.4), data$y)

and then fit cbind(ymin, ymax) as the response you should get the  
answer you expect. In your simulation ymax is the actual value of y,  
whereas in my simulation actual values less than log(0.4) are missing  
but known to be less than log(0.4). Values greater than log(0.4) are  
uncensored. I think this is the usual definition of left-censoring (?).

Cheers,

Jarrod



Quoting Anders Bjerring Strathe <strathe at sund.ku.dk> on Mon, 3 Jun  
2013 08:25:55 +0000: