get_csv_files {rfacts} | R Documentation |
List FACTS-generated CSV files
Description
List output CSV files in a directory or directories.
Usage
get_csv_files(csv_files, numbered = TRUE)
Arguments
csv_files |
Character vector of directories containing numbered CSV files |
numbered |
Logical. If |
Value
A character vector of names of CSV files.
Examples
facts_file <- get_facts_file_example("contin.facts")
# Can only run if system dependencies are configured:
if (file.exists(Sys.getenv("RFACTS_PATHS"))) {
out <- run_facts(
facts_file,
n_sims = 2L,
verbose = FALSE
)
get_csv_files(out)
}
[Package rfacts version 0.2.1 Index]