如何在Netlogo中制作散点图

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

我试图通过使用代理的两个变量(金钱和文化)来观察分布的变化

我将其直接放在绘图上,选择点模式。

plotxy [economic] of turtles [cultural] of turtles.

但是,我收到此错误:

PLOTXY expected input to be a number but got the list [] instead

我知道列表不为空,我需要图中为每只乌龟一个点

plot netlogo
1个回答
2
投票

plotxy
只需要输入2个数字。如果要绘制多个点,则需要循环执行此操作。对于海龟,您可以使用
ask
来完成,例如:

ask turtles [plotxy xcor ycor]

或者根据您的情况:

ask turtles [plotxy economic cultural]

确保将笔的

Mode
设置为指向!

© www.soinside.com 2019 - 2024. All rights reserved.