When using NetLogo's R extension, how do I create or load up an R function for use by the agents later? The following doesn't work:
extensions [r]
to setup
r:eval "function line 1"
r:eval "function line 2"
r:eval "function line 3"
etc.
end
and my function seems too long to do it all on one line (I'm not sure that would work when it got sent into R anyway). Does anyone have any advice?
I'd recommend building your functions in an R file then sourcing that file within NetLogo. For example, I have a file called 'example_r.R' that just serves to store
Foo
:I can then
source()
the file withr:eval
and all contained functions will be available:After
setup
andgo
: