Intakes the output of check_uc in order to apply additional processing. This
includes either adding proportions (for longitudinal output) or computing overall
totals across all sites included in the input (for non-longitudinal output)
Arguments
- uc_results
tabular input || required
The tabular output of
check_uc. This table should include results for all institutions that should be included in the computation of overall / "network level" statistics.- rslt_source
string || defaults to
remoteA string that identifies the location of the
uc_resultstable. Acceptable values arelocal- table is stored as a dataframe in the local R environmentcsv- table is stored as a CSV fileremote- table is stored on a remote database
- csv_rslt_path
string || defaults to
NULLIf
rslt_sourcehas been set tocsv, this parameter should indicate the path to the result file(s). Otherwise, this parameter can be left asNULL
Value
This function will return all columns from the uc_results input with either an
additional column with unmapped proportions (by_year) or with additional rows that
include total unmapped counts/proportions across all sites (not by_year)
Examples
# This function should be run after check_uc has been executed for all
# network institutions and results have been combined into a common table
# Once the labels have been applied, the function can be executed
## When results are kept locally:
if (FALSE) { # \dontrun{
my_uc_process <- process_uc(uc_results = my_uc_rslts,
rslt_source = 'local')
} # }
## When results are kept in CSV files:
if (FALSE) { # \dontrun{
my_uc_process <- process_uc(uc_results = 'my_uc_rslts',
rslt_source = 'csv',
csv_rslt_path = 'path/to/my/results')
} # }
## When results are kept on a remote database:
if (FALSE) { # \dontrun{
my_uc_process <- process_uc(uc_results = 'my_uc_rslts',
rslt_source = 'remote')
} # }
