初学者帮助Netlogo,输出打印

时间:2017-04-03 09:22:45

标签: excel output netlogo

我是这个Netlogo软件的绝对初学者,并且没有任何编程经验。我正在使用随软件提供的示例程序来运行科学实验,我只想将原始数据用于项目,但我不知道如何获取它。我听说我需要使用输出打印命令,但我不知道如何做到这一点。任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

Dana,如果您需要运行多次重复,我会查看Behavior Space。它是Netlogo(工具 - >行为空间)的一部分,允许您轻松地将输出保存到.csv文件。

如果您只想要快速而不那么漂亮的数据,您可以执行以下操作:

to setup
  ca
  reset-ticks  
end

to go
  tick
  print-to-file 
end

to print-to-file

  file-open "example.csv"
  file-type (word ticks ",\n");; replace ticks with the variable you want out
  file-close

end

将输出附加到文件“example.csv”。