get.dataset.index | R Documentation |
Retrieving the characteristics of one of more systematic reviews found in the database using their PMID number or year of publication.
get.dataset.index(pmid, year = NULL, show.title = FALSE, show.comment = FALSE)
pmid |
A scalar or vector with the PMID number(s) of the systematic reviews found in the database. |
year |
A scalar to define the year of publication.
|
show.title |
Logical to indicate whether to show the title of the
selected systematic review(s). The default is |
show.comment |
Logical to indicate whether to show the comment referring
to extraction notes about the selected systematic review(s). The default is
|
When year
is specified, the argument pmid
should be NULL.
Then, get.dataset.index
returns all systematic reviews found in the
database under this year.
get.dataset.index
returns a vector (when pmid
is scalar) or a
data-frame (when pmid
is a vector) with the following
characteristics (column names):
nmadb.ID |
The ID number as provided in the archived R package nmadb. |
PMID |
The PMID number. |
First.Author |
The name of the first author. |
Year |
The year of publication. |
Journal.Name |
The abbreviated name of the journal. |
Title |
The title of the systematic review. |
Outcome.Type |
The outcome type as suggested by Turner et al. (2012) and distinguished into objective, semi-objective and subjective. |
Intervention.Comparison.Type |
The treatment-comparator type as suggested by Turner et al. (2012) and distinguished into pharmacological versus placebo, pharmacological versus pharmacological, and non-pharmacological versus any. |
Includes.ToC.where |
Whether the extracted study-level aggregate characteristics were found in the main article, Appendix or both. |
Source.ToC |
The exact location in the systematic review where the extracted study-level aggregate characteristics were found, such as Table(s) in the main article, and/ or Appendix. |
Comment |
Notes related to the extraction for the selected systematic review(s). |
Loukia M. Spineli
Papakonstantinou T. nmadb: Network Meta-Analysis Database API. R package version 1.2.0. 2019. <https://CRAN.R-project.org/package=nmadb> (archived).
Turner RM, Davey J, Clarke MJ, Thompson SG, Higgins JP. Predicting the extent of heterogeneity in meta-analysis, using empirical data from the Cochrane Database of Systematic Reviews. Int J Epidemiol 2012;41(3):818–27. doi: 10.1093/ije/dys041.
# For one systematic review with PMID number 25626481.
get.dataset.index(pmid = 25626481)
# For two systematic reviews with PMID numbers 25626481 and 15147585,
# respectively.
get.dataset.index(pmid = c(25626481, 15147585))
# For systematic reviews published during 2010.
get.dataset.index(pmid = NULL, year = 2010)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.