View source: R/crossnma2netmeta.R
crossnma2netmeta | R Documentation |
Auxiliary function to create a netmeta object from a crossnma object
crossnma2netmeta(
x,
keep.samples = TRUE,
level = gs("level"),
level.ma = x$model$level.ma,
reference.group = x$model$reference,
baseline.reference = gs("baseline.reference"),
small.values = x$model$small.values,
all.treatments = gs("all.treatments"),
seq = gs("seq"),
backtransf = x$model$backtransf,
nchar.trts = gs("nchar.trts"),
nchar.studlab = gs("nchar.studlab")
)
x |
A |
keep.samples |
A logical indicating whether to keep the generated samples. |
level |
The level used to calculate confidence intervals for individual comparisons. |
level.ma |
The level used to calculate confidence intervals for network estimates. |
reference.group |
Reference treatment (first treatment is used if argument is missing). |
baseline.reference |
A logical indicating whether results
should be expressed as comparisons of other treatments versus the
reference treatment (default) or vice versa. This argument is
only considered if |
small.values |
A character string specifying whether small
treatment effects indicate a beneficial ( |
all.treatments |
A logical or |
seq |
A character or numerical vector specifying the sequence of treatments in printouts. |
backtransf |
A logical indicating whether results should be
back transformed in printouts and forest plots. If
|
nchar.trts |
A numeric defining the minimum number of characters used to create unique treatment names (see Details). |
nchar.studlab |
A numeric defining the minimum number of characters used to create unique study labels. |
A netmeta object with additional class "netmeta.crossnma".
Guido Schwarzer guido.schwarzer@uniklinik-freiburg.de
netmeta
## Not run:
if (requireNamespace("crossnma", quietly = TRUE)) {
library("crossnma")
# 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)
# Print results in netmeta layout
cro <- crossnma2netmeta(fit)
cro
# SUCRAs
netrank(cro)
# Rankogram
rankogram(cro)
}
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.