R/bayes_functions.R
    logitHyperPars.RdlogitHyperPars is a function for calculating parameters for a logit-normal distribution, such that the distribution yields desired mean and standard deviation.
Used for sampling the c-parameter.
logitHyperPars(mean, sd)logitHyperPars returns two values. These can be directly supplied to rlogitnorm.
pars <- logitHyperPars(0.2, 0.1)
x <- logitnorm::rlogitnorm(1000000, pars[1], pars[2])
mean(x) # close to 0.2
#> [1] 0.2081696
sd(x)   # close to 0.1
#> [1] 0.1218415