Filters ADNCA to urine specimen rows (where PCSPEC %in% urine_specs) then
delegates to l_pkcl01() with VOLUME and VOLUMEU added to the displayed
columns when those columns are present in the data.
Arguments
- data
A CDISC ADNCA data frame (from
export_cdisc()$adnca).- urine_specs
Character vector of specimen type values to keep, matched case-insensitively against
PCSPEC. Default:c("URINE").- listgroup_vars
Character vector of columns used to split output into separate listings. Default:
c("PARAM", "PCSPEC"). WhenPCSPECis absent fromdata, it is silently removed from this vector.- displaying_vars
Character vector of columns to display. When
NULL(default), usesc("NFRLT", "AFRLT", "AVAL")plusVOLUME/VOLUMEUif those columns exist in the data.- ...
Additional arguments forwarded to
l_pkcl01().
Examples
if (FALSE) { # \dontrun{
adnca <- export_cdisc(res_nca)$adnca
listings <- l_pkcl02_uri(adnca)
print(listings[[1]])
} # }