nmareg {NMA} | R Documentation |
Network meta-regression based on contrast-based approach
Description
Network meta-regression based on contrast-based approach using the multivariate meta-regression model. Effect modifications by study-level covariates (specified in the setup
function) can be assessed. In many network meta-analysis, some treatment contrasts involve only 1 or 2 (or 0) direct comparisons, and the regression coefficients of the corresponding outcomes cannot be validly estimated (non-identifiable). Thus, the nmareg
function can specify a subset of outcome variables to be modelled by the regression model (to be assessed the effect modifications) by treats
. Currently, the parameter estimation is performed by the ordinary REML method.
Usage
nmareg(x, z, treats)
Arguments
x |
Output object of |
z |
Covariate name vector |
treats |
A vector that specifies treatments to be assessed effect modifications that correspond to the elements of outcome vectors |
Value
Results of the network meta-regression analysis are presented.
-
coding
: A table that presents the correspondence between the numerical code and treatment categories (the reference category is coded as 1). -
Covariates
: Covariate that specified insetup
. -
Outcome evaluated the effect modifications
: Treatment contrasts that the effect modifications are evaluated. -
Coefficients
: Estimates, their SEs, Wald-type 95% confidence intervals, and P-values for the regression parameters (cons
: intercept,beta
: regression coefficient for the explanatory variable). -
Between-studies_SD
: Between-studies SD (tau) estimate. -
Between-studies_COR
: Between-studies correlation coefficient (should be 0.50).
References
Nikolakopoulou, A., White, I. R., Salanti, G. (2021). Network meta-analysis. In: Schmid, C. H., Stijnen, T., White, I. R., eds. Handbook of Meta-Analysis. CRC Press; pp. 187-217.
Noma, H., Hamura, Y., Gosho, M., and Furukawa, T. A. (2023). Kenward-Roger-type corrections for inference methods of network meta-analysis and meta-regression. Research Synthesis Methods 14, 731-741.
White, I. R., Barrett, J. K., Jackson, D., and Higgins, J. P. (2012). Consistency and inconsistency in network meta-analysis: model estimation using multivariate meta-regression. Research Synthesis Methods 3, 111-125.
Examples
data(heartfailure)
hf2 <- setup(study=study,trt=trt,d=d,n=n,z=c(SBP,DBP,pubyear),measure="OR",
ref="Placebo",data=heartfailure)
nmareg(hf2,z=SBP,treats=3)
nmareg(hf2,z=c(SBP,DBP),treats=c(3,4,6))