setsim<- {nlrx} | R Documentation |
Setter function to set a variable of a simdesign object
Description
Setter function to set a variable of a simdesign object
Usage
setsim(nl, var) <- value
Arguments
nl |
nl object |
var |
valid simdesign variable string |
value |
valid value for the specified variable |
Examples
# Example for Wolf Sheep Predation model from NetLogo models library:
nl <- nl(nlversion = "6.0.3",
nlpath = "/home/user/NetLogo 6.0.3/",
modelpath = "/home/user/NetLogo 6.0.3/app/models/Sample Models/Biology/Wolf Sheep Predation.nlogo",
jvmmem = 1024)
# Set simulation seeds
setsim(nl, "simseeds") <- c(123, 456, 789)
[Package nlrx version 0.4.5 Index]