Description Usage Arguments Details Value See Also Examples
A generic function that turns meta-analysis objects into a list of data frames used for plotting.
1 |
meta |
An object of class |
... |
Other arguments. |
Currently, object meta
can come from functions metabin()
or metacont()
from the meta package, meta.DSL
or
meta.MH
from the rmeta package, or rma.mh
,
rma.peto
, or rma.uni
from the metafor package.
An object of class c('metabinDF', 'metaDF')
or
c('metacontDF', 'metaDF')
. For details of these classes, see
meta2DF.metabin
and meta2DF.metacont
respectively.
meta2DF.metabin
,
meta2DF.metacont
1 2 3 4 5 6 7 8 9 10 11 12 | library(meta)
data(Olkin95)
meta1 <- metabin(event.e, n.e, event.c, n.c, data = Olkin95,
subset = c(41,47,51,59), sm = "RR", method = "I")
Data1 <- meta2DF(meta1)
Data1
### testing 'add' argument
add <- list(test1 = c(1:4), test2 = c(5:8))
Data2 <- meta2DF(meta1, title = "Thrombolytic Therapy" ,
rowOrder = "effect", decreasing = TRUE,
add = add)
Data2
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.