Return output from a civis_script.

fetch_output_file_ids(x, regex = NULL)

fetch_output(x, regex = NULL)

Arguments

x

civis_script

regex

string, regex used to match the run output name.

Value

A named list of run output file ids with names matching regex.

Details

If the script has no outputs, the results are a list of length is 0.

Functions

  • fetch_output: Return output of scripts_list_*_runs_outputs matching regex.

See also

Other script_utils: civis_script(), run_civis(), run_template()

Other script_utils: civis_script(), run_civis(), run_template()

Examples

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) }