General Argument Name Convention
Usage
gen_args(
adam_db,
main,
preprocess,
postprocess,
dataset,
type,
arm_var,
lbl_overall,
prune_0,
req_tables,
deco,
group,
tlg,
visitvar,
visit_value,
paramcd_value,
key_cols,
disp_cols,
row_split_var,
split_into_pages_by_var,
page_var,
unique_rows,
...
)
Arguments
- adam_db
(
list
ofdata.frames
) object containing theADaM
datasets- main
(
function
) returning atlg
, withadam_db
as first argument. Typically one of the_main
function ofchevron
.- preprocess
(
function
) returning a pre-processedlist
ofdata.frames
, withadam_db
as first argument. Typically one of the_pre
function ofchevron
.- postprocess
(
function
) returning a post-processedtlg
, withtlg
as first argument.- dataset
(
string
) the name of a table in theadam_db
object.- type
(
string
) indicating the subclass.- arm_var
(
string
) variable used for column splitting- lbl_overall
(
string
) label used for overall column, if set toNULL
the overall column is omitted- prune_0
(
flag
) remove 0 count rows- req_tables
(
character
) names of the required tables.- deco
(
character
) decoration withtitle
,subtitles
andmain_footer
content- group
(
list of lists
) for group-dependent data binning- tlg
(
TableTree
,Listing
orggplot
) object typically produced by amain
function.- visitvar
(
string
) typically"AVISIT"
or user-defined visit incorporating"ATPT"
.- visit_value
Value of visit variable.
- paramcd_value
Value of
PARAMCD
variable.- key_cols
(
character
) names of columns that should be treated as key columns when rendering the listing. Key columns allow you to group repeat occurrences.- disp_cols
(
character
) names of non-key columns which should be displayed when the listing is rendered.- row_split_var
(
character
) additional row split variables.- split_into_pages_by_var
(
character
orNULL
) the name of the variable to split the listing by.- page_var
(
string
) variable name prior to which the row split is by page.- unique_rows
(
flag
) whether to keep only unique rows in listing.- ...
not used.