Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closes #282: Test Data Guidance vignette #293

Merged
merged 9 commits into from
Aug 9, 2023
Merged
3 changes: 2 additions & 1 deletion _pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ navbar:
href: articles/rcmd_issues.html
- text: Release Strategy
href: articles/release_strategy.html
- text: Test Data Guidance
href: articles/test_data_guidance.html
- text: Package Extensions
href: articles/package_extensions.html

1 change: 1 addition & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ OCCDS
PRs
Pandoc
Pharma
Pharmaverse
Quosure
Quosures
PHUSE
Expand Down
20 changes: 20 additions & 0 deletions vignettes/test_data_guidance.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "Test Data Guidance"
output: rmarkdown::html_vignette
vignette: >
%\VignetteIndexEntry{Test Data Guidance}
%\VignetteEngine{knitr::rmarkdown}
---

```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```

There are two test data packages that enable any Pharmaverse package development team to re-use test SDTM and ADaM:

- [`{pharmaversesdtm}`](https://github.com/pharmaverse/pharmaversesdtm): a data package that stores test SDTM data. If the current available data does not meet your need, update or add the new data in this package based on the instructions provided on the [How to Update](https://pharmaverse.github.io/pharmaversesdtm/cran-release/).

- [`{pharmaverseadam}`](https://github.com/pharmaverse/pharmaverseadam): a data package that stores test ADaM data created from {admiral} templates. There is an integration test that runs {admiral} templates and compares them with the stored version. If differences are found, it then triggers an action: either accepting the difference and storing the new ADaM, or rejecting it and identifying the cause of the differences in the templates.
Loading