Package 'scda'

Title: Package to Access Synthetic CDISC Archive Data
Description: Access Synthetic CDISC Data from Archive Packages.
Authors: Pawel Rucki [aut, cre], Adrian Waddell [aut], Jana Stoilova [aut], Joe Zhu [aut], Nikolas Burkoff [aut], F. Hoffmann-La Roche AG [cph, fnd]
Maintainer: Pawel Rucki <[email protected]>
License: Apache License 2.0 | file LICENSE
Version: 0.1.6.9021
Built: 2024-11-17 05:43:59 UTC
Source: https://github.com/insightsengineering/scda

Help Index


List Available Data

Description

List Available Data

Usage

ls_synthetic_cdisc_data()

Examples

ls_synthetic_cdisc_data()

Get Synthetic CDISC Data

Description

Get Synthetic CDISC Data

Usage

synthetic_cdisc_data(name)

Arguments

name

name of data collection to return. If name = "latest" then the newest datasets get returned.

Value

A named list containing synthetic datasets.

Examples

## Not run: 
library(scda.2022)

dfs <- synthetic_cdisc_data("rcd_2022_06_27")
names(dfs)

latest_dfs <- synthetic_cdisc_data("latest")
names(latest_dfs)

## End(Not run)

Get Synthetic CDISC Dataset

Description

Get Synthetic CDISC Dataset

Usage

synthetic_cdisc_dataset(archive_name, dataset_name)

Arguments

archive_name

name of data collection. If archive_name = "latest" then the newest dataset gets returned.

dataset_name

the lowercase name of the requested dataset (e.g. "adsl").

Value

A data.frame containing synthetic data.

Examples

## Not run: 
library(scda.2022)

adsl <- synthetic_cdisc_dataset("latest", "adsl")

## End(Not run)