- Yes, but I don’t know if the prior is reasonable for your data. To get more info on what to set priors, use
get_prior
. - Yes, you can use brms’s ID syntax for it and replace (1 | participant) by (1 | ID | participant), where you can replace ID by whatever you like. See the second brms paper as published in R journal for detials.
- the lognormal distribution has its parameters on the log scale that is, the priors are in fact on the scale of log(RT)
- use lognormal instead of normal if you want to use a lognormal prior. I would argue this is non-sensible here, since you model the log(mean(RT)) and not mean(RT) as per (3).
- See the output of
get_prior
for default priors.
1 Like