Run Abimo with Input Data or Input File
Usage
run_abimo(
input_file = NULL,
input_data = NULL,
output_file = NULL,
config_file = NULL,
config = NULL,
tag = latest_abimo_version(),
read_intermediates = FALSE
)
Arguments
- input_file
path to input dbf file
- input_data
data frame from which a temporary input file is to be generated
- output_file
path to output file. By default the output file has the same name as the input file with "_result" appended
- config_file
optional. Path to config.xml file
- config
optional. Configuration object of class "abimoConfig", as returned by
create_configurator
. If given,config_file
is ignored.- tag
version tag of Abimo release to be used, see https://github.com/KWB-R/abimo/releases.
- read_intermediates
if
TRUE
the values of intermediate variables are read from the log file (if applicable). The default isFALSE
.