I'm doing my analysis with R 4.0.2 and was using an linear model with the lm() function (default setting) and omega squared as a measure of effect size (omega_sq() function).
After reading the following paper :Article Regression Models for Log-Normal Data: Comparing Different M...
As my data fits the criteria, I decided to try the general linear model with a gamma distribution an log link method. I was able to fit the model with the glm() function, but I'm not able to use the omega_sq() function on it and I am not quite sure that this is the correct effect measure for this approach (from the documentation I read it seems like omega_sq() coerces the model to an ANOVA).
Any insights on what the correct effect size measure for this model is and what R function can I use to calculate it?