-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
94 lines (67 loc) · 4.2 KB
/
README.Rmd
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
output:
rmarkdown::github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
<!-- badges: start -->
[![minimal R version](https://img.shields.io/badge/R%3E%3D-`r as.character(getRversion())`-brightgreen.svg)](https://cran.r-project.org/)
[![Licence](https://img.shields.io/github/license/mashape/apistatus.svg)](http://choosealicense.com/licenses/mit/)
[![R build status](https://github.com/OJWatson/arms/workflows/R-CMD-check/badge.svg)](https://github.com/OJWatson/arms/actions)
[![CodeFactor](https://www.codefactor.io/repository/github/OJWatson/arms/badge)](https://www.codefactor.io/repository/github/OJWatson/arms)
<!-- badges: end -->
## Research compendium for antimalarial resistance risk mapping
This is a working R compendium (think R package but for reproducible analysis). A good overview on research compendiums, see the [R for Reproducible Research](https://annakrystalli.me/rrresearch/index.html) course.
### Installation
```
git clone https://github.com/OJWatson/arms.git
cd arms
open arms.Rproj
```
Next, if `renv` has been used in this repository (look out for `renv.lock`) then use `renv::restore` to set up package dependencies. Otherwise `devtools::install_dev_deps()` will install all required packages, as specified in the Imports in DESCRIPTION.
### Overview
The structure within analysis is as follows:
```
R/ # Packaged R functions
analysis/
|
├── 01_xxxxx / # analysis scripts used for generating figures
|
├── plots/ # location of figures produced by the analysis scripts
|
├── tables/ # location of any tables produced by the analysis scripts
|
├── data_raw/ # data obtained from elsewhere and treated read-only
|
├── data_derived/ # intermediate data generated during the analysis
|
├── data_out/ # data outputs produced for external partners
```
Any analysis scripts with "X_" in the name are used to format raw data shared with
us for this project that could not be included in the repository and only summaries
of the data as needed for the modelling could be included. These scripts are still
included to show how the raw data was processed and the summaries saved in `data_raw`
for use later on. In this way, we ensure transparency and reproducibility.
Analysis scripts are to be run in the numbered order they are included. If there are
shared numbers, then any order of those scripts works.
### Compendium DOI:
https://zenodo.org/record/XXX
The files at the URL above will generate the results as found in the publication.
### The R package
This repository is organized as an R package. There are only a few R functions exported in this package - the majority of the R code is in the analysis directory. The R package structure is here to help manage dependencies, to take advantage of continuous integration, and so we can keep file and data management simple. For any R packages that are used frequently in this repository, they are documented in `R/` and are used in the analysis folder using `devtools::load_all()`.
To download the package source as you see it on GitHub, for offline browsing, use this line at the shell prompt (assuming you have Git installed on your computer):
```{r eval=FALSE}
git clone https://github.com/OJWatson/arms.git
```
Once the download is complete, open the `arms.Rproj` in RStudio to begin working with the package and compendium files. We will endeavour to keep all package dependencies required listed in the DESCRIPTION.
<!-- To add this once all the analysis is done -->
In addition, once analysis is completed, we will use `renv` to track package dependencies for reproducibility. Please use `renv::restore` to restore the state of the project and see https://rstudio.github.io/renv/articles/renv.html for more information.
### Licenses
Code: [MIT](http://opensource.org/licenses/MIT) year: `r format(Sys.Date(), "%Y")`, copyright holder: OJ Watson
Data: [CC-0](http://creativecommons.org/publicdomain/zero/1.0/) attribution requested in reuse