
Estimate arbitrary complex interventions from a component NMA
network_complex_effect.RdEstimate arbitrary complex interventions from a component NMA
Usage
network_complex_effect(
object,
intervention,
comparator = NULL,
level = object$level,
backtransf = FALSE
)Arguments
- object
A
cnma_marsobject returned bynetwork_component_meta.- intervention
Character vector of complex interventions, or a single integer giving the size of all component combinations to generate.
- comparator
Optional comparator intervention. If
NULL, estimates are relative to the component model reference.- level
Confidence level.
- backtransf
Logical; if
TRUE, exponentiate estimates and intervals.
Value
A data frame with estimated effects for arbitrary complex interventions or intervention comparisons.
Examples
if (FALSE) { # \dontrun{
cnma_fit <- network_component_meta(nma_fit)
network_complex_effect(cnma_fit, intervention = "B", comparator = "A")
} # }