Return output from a civis_script.
fetch_output_file_ids(x, regex = NULL) fetch_output(x, regex = NULL)
x | civis_script |
---|---|
regex | string, regex used to match the run output name. |
A named list of run output file ids with names matching regex
.
If the script has no outputs, the results are a list of length is 0.
fetch_output
: Return output of scripts_list_*_runs_outputs
matching regex
.
Other script_utils:
civis_script()
,
run_civis()
,
run_template()
Other script_utils:
civis_script()
,
run_civis()
,
run_template()
if (FALSE) { out <- fetch_output(civis_script(1234)) # Filter output with regex, then read into memory: ids <- fetch_output_file_ids(civis_script(1234), regex = '.csv') vals <- lapply(ids, read_civis, using = read.csv) }