Skip to content

Commit f6c8d7b

Browse files
authored
Merge pull request #130 from RConsortium/127-warnings-from-adslr-and-other-adam-programs
Closes #127 and #128 ADaMs and ADRG Updates
2 parents cd84fef + 520b6df commit f6c8d7b

6 files changed

Lines changed: 23 additions & 12 deletions

File tree

adrg/_adrg.qmd

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -704,8 +704,6 @@ the name of the dataset in the command. Rds files will be created for each ADaM
704704
source(file.path(path$programs, "adsl.r"))
705705
```
706706

707-
708-
709707
6. Execute Display programs as seen in the order below:
710708

711709
- `tlf-demographic.r`
@@ -714,11 +712,19 @@ source(file.path(path$programs, "adsl.r"))
714712
- `tlf-primary.r`
715713

716714
Similarly to the ADaMs, you can run this command to quickly execute the display
717-
programs. The newly run display outputs will be available in the `pilot5-tlfs` folder.
718-
715+
programs.
716+
719717
```r
720718
source(file.path(path$programs, "tlf-demographic.r"))
721719
```
720+
721+
The newly run display outputs will be available in sub-folders in the `programs` folder
722+
called `out`, `pdf` and `rtf`. The programs `tlf-demographic.r` and `tlf-efficacy.r` will
723+
produce outputs in the `rtf` folder. The program `tlf-kmplot.r` will produce the output
724+
in the `pdf` folder. The `tlf-demographic.r` will produce the output in the `out`
725+
folder.
726+
727+
722728

723729
# Appendix 2
724730

@@ -1137,10 +1143,10 @@ standard. Please see Citations for additional information on these differences.
11371143

11381144
**Citation 2** : CDISC (2024). *Dataset-JSON v1.1*. Available at: https://www.cdisc.org/standards/data-exchange/dataset-json/dataset-json-v1-1 [Accessed 15 Sep. 2025].
11391145

1140-
**Citation 3** : CDISC (2024). *Dataset-JSON v1.1 Public Review Presentation*. Dataset-JSON-v1-1-Public-Review.pptx [Accessed 15 Sep. 2025].
1146+
**Citation 3** : CDISC (2024). Dataset-JSON v1.1 Public Review Presentation. Available at: https://www.cdisc.org/sites/default/files/pdf/Dataset-JSON-v1-1-Public-Review.pdf [Accessed 15 Sep. 2025].
11411147

1142-
**Citation 4** : CDISC (2024). *Dataset-JSON v1.1 GGG Final Presentation*. Dataset-JSON-v1-1-GGG-Final.pptx [Accessed 15 Sep. 2025].
1148+
**Citation 4** : CDISC (2024). Dataset-JSON v1.1 GGG Final Presentation. Available at: https://github.com/user-attachments/files/22663348/Dataset-JSON-v1-1-GGG-Final.pptx [Accessed 15 Sep. 2025].
11431149

1144-
**Citation 5** : CDISC (2024). *Public Review Metrics and Issue Dispositions*. Dataset-JSON-v1-1-GGG-Final.pptx [Accessed 15 Sep. 2025].
1150+
**Citation 5** : CDISC (2024). Public Review Metrics and Issue Dispositions. Available at: https://github.com/user-attachments/files/22663348/Dataset-JSON-v1-1-GGG-Final.pptx [Accessed 15 Sep. 2025].
11451151

11461152
**Citation 6** : CDISC (2025). *Dataset-JSON v1.1 API v1.0 Standard and Compressed Dataset-JSON v1.1*. Available at: https://www.cdisc.org/public-review/dataset-json-v1-1-api-v1-0-standard-and-compressed-dataset-json-v1-1 [Accessed 15 Sep. 2025].

pilot5-submission/pilot5-programs/adadas.r

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ list2env(datasets, envir = .GlobalEnv)
3838
## Load dataset specs -----------
3939
metacore <- spec_to_metacore(
4040
file.path(path$adam, "adam-pilot-5.xlsx"),
41-
where_sep_sheet = FALSE
41+
where_sep_sheet = FALSE,
42+
quiet = TRUE
4243
)
4344

4445
### Get the specifications for the dataset we are currently building

pilot5-submission/pilot5-programs/adae.r

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ list2env(datasets, envir = .GlobalEnv)
3838
## Load dataset specs -----------
3939
metacore <- spec_to_metacore(
4040
file.path(path$adam, "adam-pilot-5.xlsx"),
41-
where_sep_sheet = FALSE
41+
where_sep_sheet = FALSE,
42+
quiet = TRUE
4243
)
4344

4445
### Get the specifications for the dataset we are currently building

pilot5-submission/pilot5-programs/adlbc.r

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ list2env(datasets, envir = .GlobalEnv)
3636
## Load dataset specs -----------
3737
metacore <- spec_to_metacore(
3838
file.path(path$adam, "adam-pilot-5.xlsx"),
39-
where_sep_sheet = FALSE
39+
where_sep_sheet = FALSE,
40+
quiet = TRUE
4041
)
4142

4243
### Get the specifications for the dataset we are currently building

pilot5-submission/pilot5-programs/adsl.r

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ list2env(datasets, envir = .GlobalEnv)
3636
## Load dataset specs -------------
3737
metacore <- spec_to_metacore(
3838
file.path(path$adam, "adam-pilot-5.xlsx"),
39-
where_sep_sheet = FALSE
39+
where_sep_sheet = FALSE,
40+
quiet = TRUE
4041
)
4142

4243
# Get the specifications for the dataset we are currently building

pilot5-submission/pilot5-programs/adtte.r

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ list2env(datasets, envir = .GlobalEnv)
3333

3434
## Load dataset specs -----------
3535
metacore <- spec_to_metacore(file.path(path$adam, "adam-pilot-5.xlsx"),
36-
where_sep_sheet = FALSE
36+
where_sep_sheet = FALSE,
37+
quiet = TRUE
3738
)
3839

3940
### Get the specifications for the dataset we are currently building

0 commit comments

Comments
 (0)