-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
processing maps, intended use vignette, introduction vignette
Co-authored-by: benoit <[email protected]> Co-authored-by: Adrian Waddell <[email protected]>
- Loading branch information
1 parent
6a87f4e
commit 7b4ef11
Showing
53 changed files
with
1,576 additions
and
660 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,21 @@ | ||
|
||
#' General Argument Name Convention | ||
#' | ||
#' @param adam_db (`dm`) object containing the adam Datasets. | ||
#' @param adam_db (`dm`) object containing the ADaM datasets | ||
#' @param armvar (`character`) variable used for column splitting | ||
#' @param deco (`character`) decoration with `title`, `subtitles` and `main_footer` content | ||
#' @param lbl_overall (`character`) label used for overall column, if set to `NULL` the overall column is omitted | ||
#' @param prune_0 (`logical`) remove 0 count rows | ||
#' @param .study (`list`) with default values for the arguments of the function | ||
#' @param ad_bl (`data.frame`) subject baseline Dataset with one row per patient | ||
#' @param adsl (`data.frame`) Subject Level Analysis Dataset | ||
#' @param adeg (`data.frame`) ECG Analysis Dataset | ||
#' @param adae (`data.frame`) Adverse Events Analysis Dataset | ||
#' @param adcm (`data.frame`) Concomitant Medications Analysis Dataset | ||
#' @param admh (`data.frame`) Medical History Analysis Dataset | ||
#' @param aag (`data.frame`) Adverse Event Grouping Defs Dataset | ||
#' @param advs (`data.frame`) Vital Signs Analysis Dataset | ||
#' @param adlb (`data.frame`) Laboratory Analysis Dataset | ||
#' @param adex (`data.frame`) Exposure Analysis Dataset | ||
#' @param adsub (`data.frame`) Subcategory Analysis Dataset | ||
#' @param adrs (`data.frame`) Response Analysis Dataset | ||
#' @param adtte (`data.frame`) Time to Event Analysis Dataset | ||
#' @param adhy (`data.frame`) Hy's Law Analysis Dataset | ||
#' @param adsaftte (`data.frame`) Safety Time to Event Analysis Dataset | ||
#' @param addv (`data.frame`) Protocol Deviations Analysis Dataset | ||
#' @param adcssrs (`data.frame`) C-SSRS Analysis Dataset | ||
#' @param adqlqc (`data.frame`) EORTC QLQ-C30 V3 Analysis Dataset | ||
#' @param acg (`data.frame`) Concomitant Med. Grouping Defs Dataset | ||
#' @param adic (`data.frame`) Interval Censoring Analysis Dataset | ||
#' | ||
#' @param tlgfname (`character`) function name of tlg-function | ||
#' @param pmap ('data frame') preprocessing map, see `std_pmap` for the required format | ||
#' @param group (`list of lists`) for group-dependent data binning | ||
#' | ||
#' @param group nest list for group-dependent data binning | ||
#' | ||
#' @details the following arguments are better provided through the study object: | ||
#' - lbl_overall | ||
#' - armvar | ||
#' @details the following arguments are better provided through the study object: `lbl_overall`, `armvar`. | ||
#' | ||
gen_args <- function( | ||
adam_db, armvar, lbl_overall, prune_0, deco, .study, | ||
ad_bl, adsl, adeg, adae, adcm, admh, aag, advs, adlb, adex, adsub, adrs, adtte, | ||
adhy, adsaftte, addv, adcssrs, adqlqc, acg, adic, group | ||
adam_db, armvar, lbl_overall, prune_0, deco, .study, group, | ||
tlgfname, pmap | ||
) { | ||
NULL | ||
} |
Oops, something went wrong.