Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schw4b/cochrane
Import Data from the Cochrane Database of Systematic Reviews (CDSR)
https://github.com/schw4b/cochrane
Last synced: 12 days ago
JSON representation
Import Data from the Cochrane Database of Systematic Reviews (CDSR)
- Host: GitHub
- URL: https://github.com/schw4b/cochrane
- Owner: schw4b
- Created: 2021-08-11T14:59:11.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-21T21:01:59.000Z (11 months ago)
- Last Synced: 2024-01-21T22:22:02.787Z (11 months ago)
- Language: R
- Size: 367 KB
- Stars: 8
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cochrane: Import Data from the Cochrane Database of Systematic Reviews (CDSR)
The Cochrane Library is probably the largest body of evidence in health care. This packages loads datasets from systematic reviews from https://www.cochranelibrary.com that include all the study data, effect estimates, and the combined effect estimates from meta-analyses.
## User guide
### Installation from github
remotes::install_github("schw4b/cochrane", build_vignettes = TRUE)
### Loading package
library(cochrane)
### Please cite this package in your research outputcitation("cochrane")
### Open vignette
vignette("cochrane")## Developer guide
### Package building
export LC_CTYPE='C'
make clean
cd cochrane; R -e 'devtools::document()'; cd ..
make build
make file=cochrane_0.1.tar.gz check### Install package locally
detach("package:swt", unload=TRUE)
R CMD REMOVE cochrane
R CMD INSTALL cochrane_0.1.tar.gz