散点图无法正确更新

问题描述 投票:0回答:1

我在更新散点图时遇到一个小问题。

目前我有作为初始化命令

ask small-agricultors [plotxy economic global]

对于更新我有相同的代码

ask small-agricultors [plotxy economic global]

但是,图表没有按照我想要的方式更新,因为我认为更新意味着它将把点移动到新位置,而不是放置新点(图像顶部)我如何告诉 netlogo 仅移动点?或者删除之前的?

Scatter plot. Here I wanted to see the points move, instead I got a ton of points!

plot netlogo
1个回答
2
投票

clear-plot
命令可能就是您正在寻找的命令(请参阅此处)。请注意:“如果尚未设置当前绘图,此命令将产生运行时错误。”,因此如果您还没有这样做,则必须使用
set-current-plot
设置所需的绘图(请参阅此处) ).

to plotting
  set-current-plot "plot 1"
  clear-plot
  set-current-plot-pen "default"
  set-plot-pen-mode 2 

  ask n-of 5 patches [plotxy pxcor pycor]
end
© www.soinside.com 2019 - 2024. All rights reserved.