aha, many thanks @andrjohns for your help
I did my computations finally, and I did my comparison and I would like to share it with you if you can give me feedback
I found posterior OR under non-informative prior (model1, OR=0.57) is less than under posterior OR with skeptical prior (model2, OR =0.92), during my study the treatment effect. Do you think this is responsible? there is interpret for that, please? or I did not use of the brm arguments correctly?.
non-informative prior: zero mean an high variance
skeptical prior: zero mean and low variance.
model1 <-brm(death~treat, mydata, family = bernoulli(link = “logit”),
prior = c(set_prior(“normal(0,10)”, class = “Intercept”),
set_prior(“normal(0,10)”, class = “b”)),
inits = “random”,chains = 1, iter = 500,
cores = 1, control = list(adapt_delta = 0.9))
model2 <-brm(death~treat, mydata, family = bernoulli(link = “logit”),
prior = c(set_prior(“normal(0, 0.15)”, class = “Intercept”),
set_prior(“normal(0, 0.15)”, class = “b”)),
inits = “random”,chains = 1, iter = 500,
cores = 1, control = list(adapt_delta = 0.9))