Stack Exchange network consists of 183 Q&A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers.
In the output of a GLMM, using a binary variable as response variable and continuous variables as explanatory variables [family = binomial(link="logit")], I obtain, for each variable, an estimate value, standard error, a z-value and a Pr(>|z|).
1) Is the z-value simmilar to the effect size?
2) If not, how can I obtain the effect size for each variable?
$\begingroup$1: No, it's a test statistic to test the null hypothesis that the estimate is zero. 2: don't you mean "how can I obtain the effect size" ? Since you don't say what kind of glmm you are running, this is very hard to say,$\endgroup$
No, it is a Wald statistic to test the null hypothesis that the estimate is zero.
2) If not, how can I obtain the effect size for each variable?
Since this is a generalized linear mixed model, you can't calculate effect sizes such as cohen's d, but since it is a logistic model with a logit link you can report odds ratios as effect sizes. The raw coefficients are on the log-odds scale, so to calculate the odds ratios, these are just exponentiated.
$\begingroup$Thank you for your answer! Just didn't understand very well how to obtain the odds ratios; do I need to exponentiate each estimate value?$\endgroup$
$\begingroup$Ok, thanks!! Do you know of any book/paper with that information that I can cite? And which one (effect size/ Wald statistics) do you suggest to report relative differences between variabes?$\endgroup$
$\begingroup$One other thing: I have my variables transformed (z-score),so does that change the interpretation of the odds ratio? Which, I assume, is: higher odds ratio, higher "importance" of a given variable.$\endgroup$
Here is for your second question. A new function has recently been added to the package emmeans to calculate effect sizes (Cohen´s d). To use it, you will need the GLMM adjusted, the Sigma, and the df. But, you need a trick to calculate the Sigma from a Mixed Model. Let me copy here a part of the information you can find at: https://rdrr.io/cran/emmeans/man/eff_size.html