# NOT RUN {
bp <- set_bin_prior(prior = "jeffreys")
# Setting the Jeffreys prior by hand
beta_prior_fn <- function(p, ab) {
return(stats::dbeta(p, shape1 = ab[1], shape2 = ab[2], log = TRUE))
}
jeffreys <- set_bin_prior(beta_prior_fn, ab = c(1 / 2, 1 / 2))
# }
Run the code above in your browser using DataLab