View source: R/mr_radialegger_rjags.R
mr_radialegger_rjags | R Documentation |
Bayesian radial MR-Egger model with a choice of prior distributions fitted using JAGS.
mr_radialegger_rjags(
object,
prior = "default",
betaprior = "",
sigmaprior = "",
n.chains = 3,
n.burn = 1000,
n.iter = 5000,
seed = NULL,
rho = 0.5,
...
)
object |
A data object of class |
prior |
A character string for selecting the prior distributions;
|
betaprior |
A character string in JAGS syntax to allow a user defined prior for the causal effect. |
sigmaprior |
A character string in JAGS syntax to allow a user defined prior for the residual standard deviation. |
n.chains |
Numeric indicating the number of chains used in the MCMC estimation, the default is |
n.burn |
Numeric indicating the burn-in period of the Bayesian MCMC estimation. The default is |
n.iter |
Numeric indicating the number of iterations in the Bayesian MCMC estimation. The default is |
seed |
Numeric indicating the random number seed. The default is the rjags default. |
rho |
Numeric indicating the correlation coefficient input into the joint prior distribution. The default is |
... |
Additional arguments passed through to |
An object of class radialeggerjags
containing the following components:
The mean of the simulated pleiotropic effect
The mean of the simulated causal effect
Standard deviation of the simulated causal effect
The mean of the simaulted residual standard deviation
The credible interval for the causal effect, which includes the lower (2.5%), median (50%) and upper intervals (97.5%)
Output of the Bayesian MCMC samples
The specified priors
Bowden, J., et al., Improving the visualization, interpretation and analysis of two-sample summary data Mendelian randomization via the Radial plot and Radial regression. International Journal of Epidemiology, 2018. 47(4): p. 1264-1278. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.1093/ije/dyy101")}.
if (requireNamespace("rjags", quietly = TRUE)) {
fit <- mr_radialegger_rjags(bmi_insulin)
summary(fit)
plot(fit$samples)
# 90% credible interval
fitdf <- do.call(rbind.data.frame, fit$samples)
cri90 <- quantile(fitdf$Estimate, probs = c(0.05, 0.95))
print(cri90)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.