Perform multiple checks on a RECIST dataset. The checks can be exported as an HTML or Excel report using recist_report_html()
or recist_report_xlsx()
.
Usage
check_recist(rc, mapping = gr_recist_mapping(), exclude_post_pd = TRUE)
Arguments
- rc
The recist dataset to check
- mapping
The character vector defining the variable mapping. Refer to
gr_recist_mapping()
for default values and adjust as needed.- exclude_post_pd
Logical; if
TRUE
(default), assessments after the first PD are excluded.
Examples
# we unfortunately cannot provide a flawed simulated recist dataset, at least not yet
if (FALSE) { # \dontrun{
db = read_database()
mapping = gr_recist_mapping()
recist_check = check_recist(db$rc, mapping=mapping)
recist_check
recist_report_html(recist_check, title="RECIST Check - Study XXX")
recist_report_xlsx(recist_check)
} # }