This is a RNetlogo problem. Suppose, I have a agentset in Netlogo, where each farmer represent one patch. I have some "setup" and "go" procedure over the patches. I wish to go for 10 ticks. At every tick I wish to extract the values in R against some variables for agents (farmers or patches). Following is my code with limited parameters -
for(i in 10){
NLCommand("set CropPirce ", 16, "setup")
NLDoCommand(i, "go")
print(NLGetAgentSet(c("ticks", "pxcor", "pycor", "Profit"),
"patches with [a? = TRUE]")) # a? means if farmer adopted the crop
}
Now, how can I extract the printed values for each tick steps into a dataframe?
Thanks in advance.
If you want to store it R, you could make an empty dataframe and then
rbind
each call toNLGetAgentSet()
.With this test model:
Make your empty dataframe:
Run the model (assuming it's already opened):