By default, trt_ref = NULL
and a network reference treatment will be chosen
that attempts to maximise computational efficiency and stability. If an
alternative reference treatment is chosen and the model runs slowly or has
low effective sample size (ESS) this may be the cause - try letting the
default reference treatment be used instead. Regardless of which treatment is
used as the network reference at the model fitting stage, results can be
transformed afterwards: see the trt_ref
argument of
relative_effects()
and predict.stan_nma()
.
The sample_size
argument is optional, but when specified:
Enables automatic centering of predictors (center = TRUE
) in nma()
when a regression model is given for a network combining IPD and AgD
Enables production of study-specific relative effects, rank probabilities,
etc. for studies in the network when a regression model is given
Nodes in plot.nma_data()
may be weighted by sample size
If a Binomial outcome is specified and sample_size
is omitted, n
will be
used as the sample size by default. If a Multinomial outcome is specified and
sample_size
is omitted, the sample size will be determined automatically
from the supplied counts by default.
All arguments specifying columns of data
accept the following:
A column name as a character string, e.g. study = "studyc"
A bare column name, e.g. study = studyc
dplyr::mutate()
style semantics for inline variable transformations, e.g. study = paste(author, year)