Skip to contents

add_listing_to_report() is used to build listings one deletion flag at a time

Usage

add_listing_to_report(deletion_report, listing, ...)

Arguments

deletion_report

Name of initialized deletion report made with build_report()

listing

Data to be used in the listing. Subset to variables that best portray why the data were deleted. Selected variables should be source variables if possible

...

additional arguments passed to reporter::create_table()

Value

A deletion report object that includes all added listings and their titles

Examples

if (FALSE) { # \dontrun{
# A deletion report with DELFN 1 and 9 added


 add_listing_to_report(
   listing = pd_delimp %>%
     filter(DELFN == 9) %>%
     select(STUDY, USUBJID, VISIT, DV, SCF),
   title = "Missing Concentration Value"
 )
} # }