|
9 | 9 |
|
10 | 10 | <!-- badges: end --> |
11 | 11 |
|
12 | | -The `iddoverse` contains R functions to convert IDDO-curated SDTM |
13 | | -domains into analysis ready datasets ('analysis datasets'). These reusable |
| 12 | +## Purpose |
| 13 | + |
| 14 | +To create analysis ready datasets ('analysis datasets') for researchers |
| 15 | +using data stored in the Infectious Diseases Data Observatory (IDDO) respoitory. |
| 16 | + |
| 17 | +These reusable |
14 | 18 | functions aim to provide a toolbox for researchers to modify the |
15 | 19 | analysis dataset to their study-specific needs, speeding up the time it |
16 | 20 | takes to create analysable data. |
17 | 21 |
|
18 | | -This package takes inspiration from the `pharmaverse`, specifically the |
19 | | -[`admiral`](https://github.com/pharmaverse/admiral) R package, however, |
20 | | -IDDO-SDTM formats are not strictly compliant with standards required by |
21 | | -pharmacutical companies and the target audience of the `iddoverse` are |
22 | | -researchers who do not have a working knowledge of SDTM, unlike the `pharmaverse`. |
23 | | - |
24 | | - IDDO - Infectious Disease Data Observatory |
25 | | - SDTM - Study Data Tabulation Model, an internation data storage model from CDISC which is used by IDDO. |
26 | | - |
27 | 22 | ## Installation |
28 | 23 |
|
29 | 24 | You can install the development version of `iddoverse` from |
30 | | -[GitHub](https://github.com/) with: |
| 25 | +[GitHub](https://github.com/) with the following code in the R console: |
31 | 26 |
|
32 | 27 | ``` r |
33 | | -# install.packages("devtools") #if you have not previously installed 'devtools' on your machine |
| 28 | +# if you have not previously installed 'devtools' on your machine |
| 29 | +# install.packages("devtools") |
34 | 30 | devtools::install_github("Infectious-Diseases-Data-Observatory/iddoverse") |
35 | 31 | library(iddoverse) |
36 | 32 | ``` |
37 | 33 |
|
38 | | -We recommend updating the install regularly as the package is developing |
| 34 | +We recommend re-installing regularly as the package is developing |
39 | 35 | constantly. Versions starting with ‘0.’ |
40 | 36 | should be expected to change without notification. |
41 | 37 |
|
42 | | -It is best to remove the package and reinstall the current version: |
43 | | - |
44 | | -``` r |
45 | | -detach("package:iddoverse", unload = TRUE) |
46 | | - |
47 | | -devtools::install_github("Infectious-Diseases-Data-Observatory/iddoverse") |
48 | | -library(iddoverse) |
49 | | -``` |
50 | | - |
51 | 38 | ## Why is this useful? |
52 | 39 |
|
53 | | -The package will assist researchers manpiulate their datasets transferred from IDDO, |
54 | | - minimising the time spent on data transformation before analysis can begin. |
| 40 | +The package assists researchers to transform their datasets (transferred from IDDO), |
| 41 | +minimising the time spent on data transformation before analysis can begin. These functions specifically work on |
| 42 | +SDTM (Study Data Tabulation Model) data stored by IDDO. |
| 43 | + |
| 44 | +Functions are documented and provide examples. A [vignette](https://infectious-diseases-data-observatory.github.io/iddoverse/articles/iddoverse.html) |
| 45 | +provides a demostration/tutorial of the functions and data in the package. |
55 | 46 |
|
56 | 47 | ## Citation |
57 | 48 |
|
|
0 commit comments