read_trialmaster {EDCimport} | R Documentation |
Read the .zip
archive of a TrialMaster export
Description
Import the .zip
archive of a TrialMaster trial export as a list of dataframes. The archive filename should be leaved untouched as it contains the project name and the date of extraction.
Generate a .rds
cache file for future reads.
If 7zip
is not installed or available, use read_all_xpt()
instead.
The TM export should be of type SAS Xport
, with the checkbox
"Include Codelists" ticked.
Usage
read_trialmaster(
archive,
...,
use_cache = "write",
clean_names_fun = NULL,
subdirectories = FALSE,
pw = getOption("trialmaster_pw"),
verbose = getOption("edc_read_verbose", 1),
key_columns = "deprecated"
)
Arguments
archive |
[ |
... |
unused |
use_cache |
[ |
clean_names_fun |
|
subdirectories |
[ |
pw |
[ |
verbose |
[ |
key_columns |
deprecated |
Value
a list containing one dataframe for each .xpt
file in the folder, the extraction date (datetime_extraction
), and a summary of all imported tables (.lookup
).
See Also
Other EDCimport reading functions:
read_all_csv()
,
read_all_sas()
,
read_all_xpt()