This function reads all or some of the output files of a project, indicated by model and process names.

readModelData(
  projectPath,
  modelName = NULL,
  processName = NULL,
  verifyFiles = FALSE,
  unlist = FALSE,
  emptyStringAsNA = FALSE,
  readCsvAsLines = FALSE,
  ...
)

Arguments

projectPath

The path to the StoX project, i.e., the folder of the project with the sub folders "input", "output" and "process". Can possibly be the path to a file inside the project folder.

modelName

The name of the model (possible values are "baseline", "analysis" and "report").

processName

The name of the process.

verifyFiles

Logical: If TRUE verify that the files are from processes that exist in the project.

unlist

Whether to unlist elements of length 1. If unlist is FALSE or 0, the output will be a list of models named by the model names (one or more of "baseline", "analysis" and "report"), which in turn are lists of processes named by the process names, which in turn are lists of process output elements, e.g. a list of data.tables such as "Data" and "Resolution" for processes using the MeanNASC function. If unlist = 1 the models will be unlisted so that the output is a list of processes. If unlist = 2 and a single process is requested, the process will be unlisted so that the output is a list of process output elements. If unlist = 3 and a single process with a single process output element is requested that element is returned. The default (TRUE) is interpreted as 3.

emptyStringAsNA

Logical: If TRUE, read empty strings as NA from the stored original tables, as RstoxFramework has started writing NAs as NAs and not as empty strings.

readCsvAsLines

Logical: If TRUE read csv files as lines with readLines.

...

Arguments passed to readBootstrapData, e.g. selection, which must be set to NA to read the entire file.

Value

A list of model output.