Hello,
I’m hoping this is more a gentle-push-in-the-right-direction question because I feel like I’m stuck on something pretty minor. I can’t figure out from the documentation for Rstanarm how to fit priors per different coefficients. I know how to do it in brms but I’m having troubles with that package since the developers have noted that there are compatibility issues between the current version of brms and the current version of R (4.2+). Anyway, the code in brms is below, and I was wondering if anyone could tell me how to achieve a similar result in Rstanarm.
Thank you!
Haven
multiple_regression_fit ← brm(data = df,
formula = mpg ~ wt + cyl,
prior = c(prior(normal(0, 2), coef = ‘wt’), #like this
prior(normal(0, 5), coef = ‘cyl’)), #like this
chains = 1,
seed = 12345)