Hi, I had this kind of model:
lmer(RunningDistance ~group+sex+condition+(1|id)+(1|day)+(1|sprint), data=data)
But, the Running Distance is a truncated variable, because individuals just had a racetrack of 1m to run, not more. In this model even the residuals seem to be truncated.
I know in this cases the coefficients may be severely biased. In this case it will be less than if I had a untruncated variable. The truncreg function (truncreg package) seems to be ideal, but it not take into account the random variables.
I really appreciate any suggestion!
Thanks!