Description Usage Arguments Value References See Also Examples
R package netmeta
provides frequenstist methods
for network meta-analysis based on Rücker (2012) and Rücker (2014).
This function is used to run netmeta on a specified network
included in the database of network meta-analyses,
which can be downloaded using function getNMADB
.
1 | runnetmeta(recid, model = "random", measure = "notset")
|
recid |
ID of network in database |
model |
"fixed" or "random"; specifies if fixed or random effects network meta-analysis should be conducted. |
measure |
If the measure entered is not compatible with network's type you get an error |
An object of class netmeta; for the descirption
of the components included in the object, see the help file of
netmeta
.
Rücker G (2012) <doi:10.1002/jrsm.1058>.
Rücker G, Schwarzer G (2014) <doi:10.1002/sim.6236>.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | ## Not run:
Conduct random effects network meta-analysis
in a random network with continuous outcome
## End(Not run)
cid <- 501427
netc <- readByID(cid)
## Not run: get type and effect
netc$type
netc$effect
## Not run: In order to run netmeta but get "SMD" summary effects instead
runnetmeta(recid=cid, measure="SMD")
## Not run: If we the following example choosing OR we get an error
runnetmeta(recid=cid, measure="OR")
## End(Not run)
## Not run: As before for a network with binary outcome
bid <- 481216
netb <- readByID(bid)
## Not run: get type and effect
netb$type
netb$effect
runnetmeta(recid=bid, measure="OR")
## Not run: Survival outcome
sid <- 479888
nets <- readByID(sid)
## Not run: get type and effect
nets$type
nets$effect
runnetmeta(recid=sid)
## Not run: Rate outcome
rid <- 479999
netr <- readByID(rid)
## Not run: get type and effect
netr$type
netr$effect
runnetmeta(recid=rid)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.