read.rm5(file, sep=",", quote = """, title,
numbers.in.labels=TRUE)
complab
) and outcome label (parameter
outclab
); this is the default in RevMan 5.O.E
(IPD analysis)."Inverse"
, "MH"
, or
"Peto"
."Fixed"
or "Random"
).incr
instead of
1*incr
is to be added to n.e
and n.c
in the
calculation of the relative risk (i.e., sm="RR"
) for studies
with a zero cell. This is used in RevMan 5. In order to generate a data analysis file in RevMan 5 use the
following Menu points: "File"
- "Export"
- "Data
and analyses"
. It is mandatory to include the following fields in the
exported data file by selecting them with the mouse cursor in the
Export Analysis Data Wizard: (i) Comparison Number, (ii) Outcome
Number, (iii) Subgroup Number. When these fields are not selected a
corresponding error message will be printed in R. It is recommended to
include all fields in the exported data file. For example, in order to
redo the meta-analysis in R for the RevMan 5 data type "O-E and
Variance"
the fields "O-E"
and "Variance"
have to be
selected in the Export Analysis Data Wizard.
By default in RevMan 5, the name of the exported data file is the
title of the Cochrane Review. Accordingly, information on the title is
extracted from the name of the exported data file (parameter:
file
) if parameter title
is missing (default).
Each respective meta-analysis for parameters event.e.pooled
--
df.pooled
is defined by values for "comp.no"
and
"outcome.no"
, and "grp.no"
.
metabin
, metacont
, metagen
, metacr
## Locate export data file "Fleiss93_CR.csv" or "Fleiss93_CR_Windows.csv"
## in sub-directory of package "meta"
##
filename <- paste(searchpaths()[seq(along=search())[search()==
"package:meta"]], "/data/Fleiss93_CR",
if (Sys.info()[["sysname"]]=="Windows") "_Windows" else "",
".csv", sep="")
Fleiss93_CR <- read.rm5(filename)
## Same result: example(Fleiss93)
##
metacr(Fleiss93_CR)
## Same result: example(Fleiss93cont)
##
metacr(Fleiss93_CR, 1, 2)
Run the code above in your browser using DataLab