为什么我用来存储循环数据的对象会抛出错误?

时间:2015-11-26 10:59:42

标签: r netlogo

nruns <- 100
NLCommand("set N-turtles 100")
for(i in 1:nruns) {
NLCommand("setup")
NLDoCommandWhile("count turtles > 99", "go", max.minutes=0)
timetaken[[i]]<-NLReport("ticks")}
timetaken

此代码在timetaken部分抛出错误说:

Error in timetaken[[i]] <- NLReport("ticks") : 
  object 'timetaken' not found

为什么会这样?

1 个答案:

答案 0 :(得分:0)

评论中建议的行可以解答我的问题。

timetaken <- numeric(nruns)