read_apsim {apsimx}R Documentation

Read APSIM generated .out files

Description

read ‘output’ databases created by APSIM runs (.out and .sim). One file at a time.

Usage

read_apsim(
  file = "",
  src.dir = ".",
  value = c("report", "all"),
  date.format = "%d/%m/%Y",
  silent = FALSE
)

Arguments

file

file name

src.dir

source directory where file is located

value

either ‘report’ (data.frame), ‘user-defined’ or ‘all’ (list)

date.format

format for adding ‘Date’ column

silent

whether to issue warnings or suppress them

Details

Read APSIM generated .out files

Value

This function returns a data frame with APSIM output or a list if value equals ‘all’

See Also

read_apsim_all

Examples

## Not run: 
extd.dir <- system.file("extdata", package = "apsimx")
maize.out <- read_apsim("Maize", src.dir = extd.dir, value = "report")
millet.out <- read_apsim("Millet", src.dir = extd.dir, value = "report")

## End(Not run)


[Package apsimx version 2.6.2 Index]