Intakes the output of check_dp
in order to apply additional processing. This
includes creating a new check_name_app
column to specify that the check
was computed at the row level.
Arguments
- dp_results
tabular input || required
The tabular output of
check_dp
. 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
remote
A string that identifies the location of the
dp_results
table. 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
NULL
If
rslt_source
has 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 the dp_results
table with additional
check_name_app
column to indicate application level
Examples
# This function should be run after check_dp has been executed for all
# network institutions and results have been combined into a common table
## When results are kept locally:
if (FALSE) { # \dontrun{
my_dp_process <- process_dp(dp_results = my_dp_rslts,
rslt_source = 'local')
} # }
## When results are kept in CSV files:
if (FALSE) { # \dontrun{
my_dp_process <- process_dp(dp_results = 'my_dp_rslts',
rslt_source = 'csv',
csv_rslt_path = 'path/to/my/results')
} # }
## When results are kept on a remote database:
if (FALSE) { # \dontrun{
my_dp_process <- process_dp(dp_results = 'my_dp_rslts',
rslt_source = 'remote')
} # }