MultipleTables.modelFit: Exact posterior inference based on multiple 2x2 tables.

View source: R/MultipleTables-method-exported.R

MultipleTables.modelFitR Documentation

Exact posterior inference based on multiple 2x2 tables.

Description

This function conducts exact posterior inference based on the object created by MultipleTables.create.

Usage

MultipleTables.modelFit(
  multiple_tables_object,
  method = "exact",
  verbose = FALSE,
  control = list()
)

Arguments

multiple_tables_object

The object created by MultipleTables.create.

method

a character string specifying the method. Options are exact and sampling. exact (default) is a method based on Monte Carlo sampling. exact is exact method.

verbose

a logical value; if TRUE, the detailed summary messages are displayed, else FALSE (default) the messages are omitted.

control

a list can be specified to control the fitting process. Options are stated in details.

Details

control list can be specified to control the fitting process:

  • n_samples: number of posterior samples; Defualt is 5000.

  • mcmc_initial: initial values for (p1, p2) in MCMC; Default is c(0.5, 0.5).

  • upper_bound: upper bound for the measure. Default is 100.

  • lower_bound: lower bound for the measure. For RD, default is -1. For RR/OR, defualt is 0.

  • num_grids: number of grids to calculate density; The defualt is 20498.

  • optim_method: optimazation method. Default is “L-BFGS-B”. Please refer to ‘optim’ function.

  • maxit: maximum number of iterations for iteration. Default is 1000. Please refer to ‘optim’ function.

  • initial_values: initial value for optimization. The default approach is to fit beta-bin model to generate initial values via aod package.

There are two kinds of study design, i.e., prospective study or clinical trial, and retrospective or case-control study. In a prospective study or clinical trial, data is a data frame that contains y1, n1, y2, n2, studynames. y1 is the number of subjects experienced a certain event in the unexposed group. n1 is the number of subjects in the unexposed group. y2 is the number of subjects experienced a certain event in the exposed group. n2 is the number of subjects in the exposed group. In this study, OR is odds ratio of event comparing exposed group with unexposed group. RR is relative risk of event comparing exposed group with unexposed group. RD is risk difference of event comparing exposed group with unexposed group.

For case-control study, y1 is the number of subjects with exposure in the control group. n1 is the number of subjects in the control group. y2 is the number of subjects with exposure in the case group. n2 is the number of subjects in the case group. In this study, OR is odds ratio of event comparing case group with control group. RR is relative risk of event comparing case group with control group. RD is risk difference of event comparing case group with control group.

Empirical Bayes method is used to maximize the marginal likelihood combining all studies to obtained the estimates of the hyperparameters a1, b1, a2, b2, and rho. When method="independent", only the estimated hyperparameters of a1, b1, a2, and b2 are used. When model="Sarmanov", rho is subject to constraints. See Chen et al (2011) for details.

The output cov.matrix and hessian are the estimated covariance matrix and hessian matrix of the estimated parameters in the transformed scales. The estimated parameters are log(a1), log(b1), log(a2), log(b2), omega, where the correlation coefficient rho is a function of a1, b1, a2, b2, and omega. Please see details on page 7 of Chen et al (2012 b).

Value

An object inheriting from class MultipleTables is returned. Objects of this class including the following non-null values:

measure

the value of measure argument.

model

the value of model argument.

data

a data matrix with rows being y1, n1, y2, and n2.

method

the value of method argument.

study_names

a character string indicating all the study names.

chi2_value

the chi-square test statistics of the likelihood ratio test.

p_value

the p-value of the likelihood ratio test.

prior_mle

a numeric vector of the estimated hyperparameters in the following order: a1, b1, a2, b2, rho.

cov_matrix_log

the estimated covariance matrix of the estimated parameters in the transformed scales.

hessian_log

the estimated hessian matrix of the estimated parameters in the transformed scales.

samples

a list of samples for the posterior and prior distributions.

density

a list of the density of the posterior and prior distributions.

These values are essential for generic functions: MultipleTables.summary and MultipleTables.plot.

References

Luo, S., Chen, Y., Su, X., Chu, H., (2014). mmeta: An R Package for Multivariate Meta-Analysis.
Journal of Statistical Software, 56(11), 1-26.
<https://dukespace.lib.duke.edu/dspace/bitstream/handle/10161/15522/2014Luo_Chen_Su_Chu_JSS_mmeta.pdf?sequence=1>
Chen, Y., Luo, S., (2011a). A Few Remarks on "Statistical Distribution of the Difference of Two Proportions' by Nadarajah and Kotz, Statistics in Medicine 2007; 26(18):3518-3523".
Statistics in Medicine, 30(15), 1913-1915.
<doi:10.1002/sim.4248>
Chen, Y., Chu, H., Luo, S., Nie, L., and Chen, S. (2014a). Bayesian analysis on meta-analysis of case-control studies accounting for within-study correlation.
Statistical Methods in Medical Research, 4.6 (2015): 836-855.
<https://doi.org/10.1177/0962280211430889>.
Chen, Y., Luo, S., Chu, H., Su, X., and Nie, L. (2014b). An empirical Bayes method for multivariate meta-analysis with an application in clinical trials.
Communication in Statistics: Theory and Methods, 43.16 (2014): 3536-3551.
<https://doi.org/10.1080/03610926.2012.700379>.
Chen, Y., Luo, S., Chu, H., Wei, P. (2013). Bayesian inference on risk differences: an application to multivariate meta-analysis of adverse events in clinical trials.
Statistics in Biopharmaceutical Research, 5(2), 142-155.
<https://doi.org/10.1080/19466315.2013.791483>.

See Also

MultipleTables.create, MultipleTables.summary, and MultipleTables.plot.

Examples


 library(mmeta)
 library(ggplot2)
 ## Analyze the dataset colorectal to conduct exact inference of the odds ratios
 data(colorectal)
 colorectal['study_name'] <- colorectal['studynames']
 # ########################## If exact method is used ############################
 ## Create object multiple_tables_obj_exact
 multiple_tables_obj_exact <- MultipleTables.create(data=colorectal,
 measure='OR', model= 'Sarmanov')
 ## Model fit default
 multiple_tables_obj_exact <- MultipleTables.modelFit(
 multiple_tables_obj_exact, method = 'exact')
 ## Options for Control; If set number of posterior samples is 5000
 multiple_tables_obj_exact <- MultipleTables.modelFit(multiple_tables_obj_exact, method = 'exact',
 control = list(n_samples = 3000))
 ## If set intial values correspoinding to c(a1, b1, a2, b2, rho) as c(1,1,1,1,0):
 multiple_tables_obj_exact <- MultipleTables.modelFit(multiple_tables_obj_exact, method = 'exact',
 control = list(initial_values = c(1,1,1,1,0)))
 ## If maximum number of iterations for iteration is 100
 multiple_tables_obj_exact <- MultipleTables.modelFit(multiple_tables_obj_exact, method = 'exact',
 control = list(maxit = 100))
 ## If maximum number of iterations for iteration is 100 and number of posterior samples as 3000
 multiple_tables_obj_exact <- MultipleTables.modelFit(multiple_tables_obj_exact, method = 'exact',
 control = list(maxit = 100, nsamples = 3000))
 # ########################## If sampling method is used ############################
 multiple_tables_obj_sampling <- MultipleTables.create(data=colorectal,
 measure='OR', model= 'Sarmanov')
 multiple_tables_obj_sampling <- MultipleTables.modelFit(
 multiple_tables_obj_sampling, method = 'sampling')
 ## The options of \code{control} list specifying the fitting process are similar
 ## to the codes shown above.



mmeta documentation built on Feb. 16, 2023, 8:39 p.m.