Skip to content
Prev 18922 / 20628 Next

What to do with zero inflated, negative skewed, negative data: a question about GLMMs

? I think Gabriella may have abandoned the linear mixed model (i.e. 
Gaussian distribution) because of a skewed distribution of responses.? A 
couple of things to keep in mind about this:

 ??? - you don't need to worry about the *marginal* distribution of the 
data (i.e., what you get if you plot the histogram or density of your 
response variable). The assumptions in LMMs (like most models) are about 
the *conditional* distribution, i.e. the distribution of the residuals 
(e.g., fit your model first, then examine lattice::qqmath(fitted_model) 
or hist(residuals(fitted_model))

 ??? - non-normality (including skewness) even in the conditional model 
is much less important to the validity (accuracy of the parameter 
estimates, confidence intervals, etc.) than many people think

 ?? - in principle you could transform the response variable to deal 
with this, although admittedly the choice of transformations is much 
more limited for non-positive data (e.g. Yeo-Johnson transformations, 
see `?car::yjPower`, although there are some issues here about whether 
you're transforming the marginal or the conditional distribution ...


 ? cheers

 ??? Ben Bolker
On 11/30/20 2:50 AM, Thierry Onkelinx via R-sig-mixed-models wrote: