R/m_inf_sgc.R

Defines functions m_inf_sgc

Documented in m_inf_sgc

# compute parameter m of the SGC(m) prior based on target RLMC value
m_inf_sgc <- function(rlmc, alpha=0.5){
  # inputs:
  # rlmc: target RLMC value
  # alpha: quantile of the SGC distribution to use as reference threshold U_ref
  # output:
  # parameter m of the SGC distribution with C=sigma_ref^{-2}
  
  log.quot <- log(rlmc) - log(1-rlmc)
  # return(1- log(alpha)/log(1+exp(log.quot)))
  log.res <- log(-log(alpha)) - log(log(1+exp(log.quot)))
  return(1 + exp(log.res))
}

Try the ra4bayesmeta package in your browser

Any scripts or data that you put into this service are public.

ra4bayesmeta documentation built on Oct. 7, 2023, 1:07 a.m.