plot.cumul.poth {poth}R Documentation

Plot cumulative precision of treatment hierarchy (POTH) values

Description

Plot cumulative precision of treatment hierarchy (POTH) values

Usage

## S3 method for class 'cumul.poth'
plot(x, labels = FALSE, nchar.trts = 4, digits = 3, ...)

Arguments

x

R object of class cumul.poth.

labels

A logical indicating whether treatment names should be shown in the plot.

nchar.trts

Number of characters to keep for each treatment name if labels = TRUE.

digits

Minimal number of significant digits for cumulative POTH, see print.default.

...

Additional arguments (ignored).

Details

Plot results of cumulative method for precision of treatment hierarchy (POTH) metric (Wigle et al., 2024).

Value

A ggplot2 object.

Author(s)

Augustine Wigle amhwigle@uwaterloo.ca, Guido Schwarzer guido.schwarzer@uniklinik-freiburg.de

References

Wigle, A., Béliveau, A., Salanti, G., Rücker, G., Schwarzer, G., Mavridis, D., Nikolakopoulou, A. (2024): Precision of Treatment Hierarchy: A Metric for Quantifying Uncertainty in Treatment Hierarchies in Network Meta-Analysis

Examples


library("netmeta")
data(Senn2013)
net1 <- netmeta(TE, seTE, treat1.long, treat2.long, studlab,
  data = Senn2013, sm = "MD", random = FALSE)

# Cumulative method
c1 <- cumul(poth(net1))
c1
plot(c1)
plot(c1, labels = TRUE)
c2 <- cumul(poth(net1), sort = FALSE)
c2
plot(c2)
plot(c2, labels = TRUE)


[Package poth version 0.2-0 Index]