print.summary.crossnma {crossnma}R Documentation

Print summary of cross-design & -format network meta-analysis or regression

Description

Print results of cross-design and cross-format network meta-analysis or meta-regression. In addition, the call used to create the JAGS model is printed.

Usage

## S3 method for class 'summary.crossnma'
print(x, digits = gs("digits"), ...)

Arguments

x

An object of class crossnma.

digits

The number of significant digits printed. The default value is 3.

...

Additional arguments.

Value

No return value (print function).

Author(s)

Tasnim Hamza tasnim.hamza@ispm.unibe.ch, Guido Schwarzer guido.schwarzer@uniklinik-freiburg.de

See Also

summary.crossnma

Examples

## Not run: 
# We conduct a network meta-analysis assuming a random-effects
# model.
# The data comes from randomized-controlled trials and
# non-randomized studies (combined naively)
head(ipddata) # participant-level data
stddata # study-level data

# Create a JAGS model
mod <- crossnma.model(treat, id, relapse, n, design,
  prt.data = ipddata, std.data = stddata,
  reference = "A", trt.effect = "random", method.bias = "naive")

# Fit JAGS model
set.seed(1909)
fit <- crossnma(mod)

# Display the output (with 5 digits)
print(summary(fit), digits = 5)

## End(Not run)


[Package crossnma version 1.2.0 Index]