
Newest 'netlogo' Questions - Stack Overflow
I'm working with a NetLogo model where my turtles have variables lat and long. I want to assign these variables the corresponding latitude and longitude values based on the coordinate reference system ...
How to use list values inside lists in Netlogo - Stack Overflow
Apr 7, 2022 · How to use list values inside lists in Netlogo Asked 3 years, 10 months ago Modified 3 years, 10 months ago Viewed 2k times
How to fix "Nothing named ? has been defined" error in NetLogo 6.0.4
Feb 2, 2019 · I downloaded the modified random clusters code for generating neutral landscape models using the Millington's version of the modified random clusters approach in the NetLogo modeling …
How to Stop a simulation with a button in Netlogo
Sep 21, 2024 · I have my go function set to forever and I want to create a button that says stop to stop the simulation as i noticed that peers running the model dont press the go button again to stop it. …
NetLogo: the meaning of TO-REPORT explained for dummies?
I have a problem to understand the role of to-report and report in NetLogo, even it seems pretty useful and I can't really find a help written in "human style" language. In NetLogo dictionnary ht...
How to loop in NetLogo? - Stack Overflow
Jan 23, 2022 · I have the following problem. I need to loop through the code. However, it doesn't work. Contextualizing the problem: I have 3 files (in .asc) that represent data referring to 3 ages of the …
How can I generate observations of a lognormal distribution in NetLogo?
Aug 30, 2024 · I have the values of parameters of the lognormal distribution (mu=1.23 and sigma=0.32) that characterize the income of a population. In Netlogo, how can I generate observations of the …
Percentage in netlogo - Stack Overflow
Oct 14, 2021 · In this case you will use the random-float command in combination with your percentage value, which is the standard way to make things happen in NetLogo according to a certain probability …
How do I do a SWITCH or SELECT CASE in NetLogo?
Oct 17, 2021 · NetLogo does not have a native SWITCH, SWITCH-CASE, or SELECT-CASE type of multiple condition, how do I do the same thing without having a giant mess of nested IF-ELSE …
netlogo - How to properly plot variables - Stack Overflow
Jul 3, 2015 · NetLogo recommended practice is to do this in the interface directly rather than in code. So, you could create a plot on the interface with, for example mean [revenue] of turtles as the plot …