Learn R Programming

civis (version 3.0.0)

fetch_output_file_ids: Return output from a civis_script.

Description

Return output from a civis_script.

Usage

fetch_output_file_ids(x, regex = NULL)

fetch_output(x, regex = NULL)

Value

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

Arguments

x

civis_script

regex

string, regex used to match the run output name.

Functions

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

Details

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

See Also

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

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

Examples

Run this code
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)
}

Run the code above in your browser using DataLab