Learn R Programming

netmeta (version 3.2-0)

summary.netmetareg: Summary method for objects of class netmetareg

Description

Summary method for objects of class netmetareg to print list of studies in subnetworks.

Usage

# S3 method for netmetareg
summary(object, ...)

# S3 method for summary.netmetareg print( x, digits = gs("digits"), digits.se = gs("digits.se"), big.mark = gs("big.mark"), ... )

Arguments

object

An object of class netmetareg.

...

Additional arguments (ignored).

x

An object of class summary.netmetareg.

digits

Minimal number of significant digits, see print.default.

digits.se

Minimal number of significant digits for standard errors.

big.mark

A character used as thousands separator.

See Also

netmetareg

Examples

Run this code
if (FALSE) {
data(smokingcessation)
# Add variable with (fictitious) risk of bias values
# with 1 = "low risk" and 2 = "high risk"
#
smokingcessation$rob <- rep(1:2, 12)

pw1 <- pairwise(list(treat1, treat2, treat3),
  event = list(event1, event2, event3), n = list(n1, n2, n3),
  data = smokingcessation, sm = "OR")

net1 <- netmeta(pw1, common = FALSE, ref = "A")

# Network meta-regression with continuous covariate and assumption of
# independent slopes
nr1 <- netmetareg(net1, rob)
nr1

summary(nr1)
}

Run the code above in your browser using DataLab