Skip to contents

Check 🛠 Docs 📚 Code Coverage 📔

GitHub forksGitHub Repo stars

GitHub commit activityGitHub contributorsGitHub last commitGitHub pull requestsGitHub repo sizeGitHub language countProject Status: Active – The project has reached a stable, usable state and is being actively developed. Current Version Open Issues

This R package contains functions for accessing synthetic CDISC from data archive packages such as scda.2022. At least one of the archive packages should be installed in order to use this package.

This synthetic data can be used as test data when developing teal applications or, statistical analysis functions. Due to the data not being derived from a real clinical trials, it provides an excellent method for generating reproducible examples when reporting errors.

Note however, that this data is somewhat idealized and real trial data is often significantly more complex.

Installation

It is recommended that you create and use a Github PAT to install the latest version of this package. Once you have the PAT, run the following:

Sys.setenv(GITHUB_PAT = "your_access_token_here")
if (!require("remotes")) install.packages("remotes")
remotes::install_github("insightsengineering/scda@*release")

A stable release of all NEST packages from June 2022 is also available here.

To install scda.2022, run the following:

Sys.setenv(GITHUB_PAT = "your_access_token_here")
if (!require("remotes")) install.packages("remotes")
remotes::install_github("insightsengineering/scda.2022@*release")

Please see the scda.2022 package website for more details.

Basic Usage

You can see which data are available with

And to load a specific data archive use

# chose the first one
chosen_data_archive <- ls_synthetic_cdisc_data()$Name[1]
print(chosen_data_archive)
oldest_dfs <- synthetic_cdisc_data(chosen_data_archive)
names(oldest_dfs)

# chose the latest one
latest_dfs <- synthetic_cdisc_data("latest")
names(latest_dfs)

Stargazers and Forkers

Stargazers over time

Stargazers over time

Stargazers

Stargazers repo roster for @insightsengineering/scda

Forkers

Forkers repo roster for @insightsengineering/scda