Write attached NetLogo simulation output to file
Arguments
- nl
nl object
- outpath
optional path to directory where output is written
Write NetLogo simulation output to a csv file in the directory outpath of the nl object Output has to be attached to the simdesign first with simoutput(nl) <- results The outpath argument can be optionally used to write output to a different directory than the defined outpath of the nl object.
Examples
# Load nl object including output data from testdata
nl <- nl_lhs
# Write output to outpath directory
write_simoutput(nl, outpath=tempdir())
#> Warning: The `path` argument of `write_csv()` is deprecated as of readr 1.4.0.
#> ℹ Please use the `file` argument instead.
#> ℹ The deprecated feature was likely used in the nlrx package.
#> Please report the issue at <https://github.com/ropensci/nlrx/issues/>.