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 #231 blog post data packages relevant to the pharmaverse #263

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,8 @@ install.packages(c("jsonlite",
"rtables",
"teal",
"riskmetric",
"tidyCDISC"))
"tidyCDISC",
"mirai"))
```
## How to Use the `blog` Docker Image for Local Development

Expand Down
Binary file added media/data.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
library(dplyr)
suppressMessages(library(dplyr))
# markdown helpers --------------------------------------------------------

markdown_appendix <- function(name, content) {
Expand Down
Binary file added posts/zzz_DO_NOT_EDIT_data__packages/data.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions posts/zzz_DO_NOT_EDIT_data__packages/data__packages.qmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
---
title: "Where is the data!?!"
author:
- name: Ben Straub
description: "Compilation of Data and Data Packages useful for Clinical Reporting"
# Note that the date below will be auto-updated when the post is merged.
date: "2024-12-30"
# Please do not use any non-default categories.
# You can find the default categories in the repository README.md
categories: [SDTM, ADaM, Community, Technical]
# Feel free to change the image
image: "data.jpg"

---

<!--------------- typical setup ----------------->

```{r setup, include=FALSE}
long_slug <- "zzz_DO_NOT_EDIT_data__packages"
library(link)
link::auto(keep_pkg_prefix = FALSE)
```

<!--------------- post begins here ----------------->

The purpose of this blog is to maintain an ongoing list of CDISC-specific data packages or packages with CDISC data that could be useful for Clinical Reporting. The packages could have a comprehensive set of data or just small toy examples for specific functions or vignettes.

Feel free to get in touch with me for additions or clarifications.

## pharmaversesdtm

A set of Study Data Tabulation Model (SDTM) datasets from the Clinical Data Interchange Standards Consortium (CDISC) pilot project used for testing and developing Analysis Data Model (ADaM) datasets inside the pharmaverse family of packages. A CDISC Pilot was conducted somewhere between 2008 and 2010. This is that Pilot data but slowly brought up to current CDISC standards.

Most common SDTM datasets can be found as well as some specific disease area SDTMs.

Available on CRAN and package is actively maintained on [GitHub](https://github.com/pharmaverse/pharmaversesdtm)

## pharmaverseadam

A set of Analysis Data Model (ADaM) datasets constructed using the Study Data Tabulation Model (SDTM) datasets contained in the 'pharmaversesdtm' package and the template scripts from the {admiral} family of packages.

Available on CRAN and package is actively maintained on [GitHub](https://github.com/pharmaverse/pharmaversesdtm)

## admiral

A toolbox for programming Clinical Data Interchange Standards Consortium (CDISC) compliant Analysis Data Model (ADaM) datasets in R. ADaM datasets are a mandatory part of any New Drug or Biologics License Application submitted to the United States Food and Drug Administration (FDA). Analysis derivations are implemented in accordance with the "Analysis Data Model Implementation Guide.

Limited datasets like `ADSL`, `ADLB` but the template scripts availabe in this package are used to create the ADaM data in {pharmaverseadam}

Available on CRAN and package is actively maintained on [GitHub](https://github.com/pharmaverse/admiral)

## random.cdisc.data

A set of functions to create random Analysis Data Model (ADaM) datasets and cached dataset. ADaM dataset specifications are described by the Clinical Data Interchange Standards Consortium (CDISC) Analysis Data Model Team.

Available on CRAN and package is actively maintained on [GitHub](https://github.com/insightsengineering/random.cdisc.data)


<!--------------- appendices go here ----------------->

```{r, echo=FALSE}
source("appendix.R")
insert_appendix(
repo_spec = "pharmaverse/blog",
name = long_slug,
# file_name should be the name of your file
file_name = list.files() %>% stringr::str_subset(".qmd") %>% first()
)
```
Loading