Hi there,
I am trying to model the absolute value of response variable that is (roughly) normally distributed. I am particularly interested in knowing whether the degree to which the response deviates from zero varies across values of a categorical predictor, hence why I am taking the absolute value.
I have two questions:
1. Is the folded normal distribution (which I understand is the most appropriate choice for my data) implemented in brms, or is there a plan to introduce it?
2. If the answer to 1 is negative, I thought of an alternative: I have centred my response variable so that it has mean zero prior to taking the absolute value. I think this should allow me to assume a special case of the folded normal, the half normal, which should be equivalent to a normal distribution truncated at a lower boundary of zero, as far as I understand.
I have then fit a truncated normal with formula
brmsformula(abs|trunc(lb=0) ~ 1 +CP1*CP2 + (1 +CP1*CP2 || Participant) +(1| Item))
where CP1 and CP2 are my categorical predictors, and
my_family = gaussian(link = "identity")
Any thoughts on whether this is a sensible approach to my problem?
I am currently using default priors and running into convergence issues. Any ideas on what an appropriate prior would be? I have never worked with truncated distributions before and am generally quite new to bayesian statistics, so apologies if none of this makes sense!
Many thanks,
Chiara