Add-Remove-Decode-Variables
Source:vignettes/Add-Remove-Decode-Variables.Rmd
Add-Remove-Decode-Variables.RmdVignette Build Datetime
Add Decode Variables to the Incoming List
add_decode <- repfun::ru_groupbyvars(c("TRTCD", "TRTGRP", "ATOXGRN", "AEDECOD", "AEBODSYS"),
c("TRTCD", "TRTGRP", "ATOXGRN", "ATOXGR"), TRUE)
print(add_decode)
#> [1] "TRTCD" "TRTGRP" "ATOXGRN" "ATOXGR" "AEDECOD" "AEBODSYS"Remove Decode Variables from the Incoming List
rem_decode <- repfun::ru_groupbyvars(c("TRTCD", "TRTGRP", "ATOXGRN", "AEDECOD", "AEBODSYS"),
c("TRTCD", "TRTGRP", "ATOXGRN", "ATOXGR"), FALSE)
print(rem_decode)
#> [1] "TRTCD" "ATOXGRN" "AEDECOD" "AEBODSYS"