Hi, I am struggling with gamma regression in rstan and would like to set weakly informative priors for the coefficients of explanatory variables. I am performing a regression using the following formula, assuming that the response variable Dist follows a gamma distribution:
Dist=exp(a0 + a_individual + b * Length + c * Month)
where Dist is the movement distance of an animal, a0 is the intercept, a_individual is the random intercept for each individual, b is the regression coefficient for the normalized length of the animal (Length), and c is the coefficient for the survey month Month.
Dist takes values between 0.1 and 50 meters.
In this case, can I assume that a normal(0, 1) prior is weakly informative? Since I am modeling on the log-scale, increasing the sigma for the prior leads to unrealistic values when predicting Dist using the obtained posterior.
Thank you for your help!