Questions tagged [behaviorspace]

Behaviourspace is a feature, or component of the NetLogo software for Agent-Based Modeling. Netlogo's main graphical user interface (GUI) lets you define widgets such as buttons, sliders, choosers, etc. A Behaviourspace is another GUI that "calls the main GUI", to run many instances of the model with systematically permuted input-parameters. You can also specify output files for saving the results of the model-runs.

Netlogo's Behaviourspace GUI is similar in functionality to Weka's "Experimenter" GUI.

53 questions
3
votes
1 answer

NetLogo BehaviorSpace - Measure runs using reporters

In my NetLogo model my turtles are called inhabitants. each inhabitant has their own start opinion (initial_opinion) an a final opinion (final_opinion). Their opinion are calculated using random numbers so i want to run the model atleast 20 times…
Simon Veen
  • 41
  • 2
2
votes
1 answer

NetLogo: Exporting table results into CSV

The objective of this model is to explore potential dispersal patterns of grey wolves in the Northern Rocky Mountains. In the model, grey wolves are given a ph-memory attribute which corresponds to a spatial data table. extensions [ gis table…
Alyssa T
  • 79
  • 6
2
votes
2 answers

How can I collect the "ids" of directed links using the NetLogo Behavior Space?

We have stored a lot of data as attributes of links in our NetLogo model. When I use the Behavior Space to design experiments and to direct data collection, I specify the "[attribute] of link" to be extracted. However, in the CSV file I cannot see…
Themisdx
  • 23
  • 3
2
votes
1 answer

netlogo-headless.sh does not run on SSH instance on Google cloud

When running: netlogo-headless.sh --model abc.nlogo --experiment experiment --table - on an SSH instance on Google cloud, I get the error: -bash:netlogo-headless.sh: command not found When runnning the above prefixed by 'sh', I get the…
2
votes
0 answers

NetLogo BehaviorSpace- Exporting Histogram with each run

When you right click a histogram in NetLogo, it has an "Export" option and it makes a csv file that contains a column of x values and total y values (like the data from a normal distribution for example). I would like to use BehaviorSpace to export…
2
votes
3 answers

Netlogo reset-ticks error message

.nlogo file I am getting this error while running iterations using behavior space The tick counter has not been started yet. Use RESET-TICKS. error while observer running TICKS called by procedure __EVALUATOR I am not sure why this is happening. I…
Raj
  • 1,049
  • 3
  • 16
  • 30
2
votes
1 answer

How to skip to the next iteration in case of an error

In Netlogo Behavior space, if one of the runs is throwing an error, how to skip that run and ask netlogo to proceed with the next run? Is it even possible?
Raj
  • 1,049
  • 3
  • 16
  • 30
2
votes
0 answers

Ever-increasing memory usage in netlogo headless behaviorspace

I'm trying to run a Netlogo model in behaviorspace, in headless mode, on a linux server. My netlogo version is 5.3.1 (the 64b version). The server has 32 cores with 64gigs of RAM. I'm setting Xmx to 3072m. After a few runs (~300) the memory usage is…
2
votes
1 answer

BehaviorSpace NetLogo: Saving Matrices with Different Names

I am running BehaviorSpace in NetLogo using the NW Extension to run several networks experiments and I need to save the network matrices into files with different names. Right now, I have the following: to create-network code to create network…
Gigi
  • 113
  • 1
  • 4
2
votes
1 answer

Netlogo 5.1 (and 5.05) Behavior Space Memory Leak

I have posted on this before, but thought I had tracked it down to the NW extension, however, memory leakage still occurs in the latest version. I found this thread, which discusses a similar issues, but attributes it to Behavior…
Simon Bush
  • 407
  • 2
  • 9
2
votes
1 answer

NetLogo BehaviorSpace memory size constraint

In my model I'm using behaviour space to carry out a number of runs, with variables changing for each run and the output being stored in a *.csv for later analysis. The model runs fine for the first few iterations, but quickly slows as the data…
Simon Bush
  • 407
  • 2
  • 9
1
vote
0 answers

NetLogo 6.2.2 BehaviorSpace not letting us select file to save results or run

A student in my class is unable to get BehaviorSpace to work on his machine. We are able to design and save experiment. When we click on run the dialog box for Run options opens and we select Table output. Then the problem arises. After clicking Ok…
daler6
  • 19
  • 3
1
vote
1 answer

Netlogo: keep data across runs in behavior space to save loading time

My model needs to import a certain amount of patch-related information (via import-world) when setting up and it takes around 10 seconds to do that. When using Behavior Space, these seconds add up very quickly and increase greatly the time needed to…
Matteo
  • 2,774
  • 1
  • 6
  • 22
1
vote
2 answers

Netlogo BehaviorSpace sweep issue

I'm trying to vary the global variables - 'experience' and 'involvement' both from 10 to 90 using BehaviorSpace. I then use these variables to set individual turtle involvement (cit-inv) and experience (cit-inv) values. r/NetLogo - BehaviorSpace…
1
vote
1 answer

NetLogo set random-seed according to the number of repetitions in the Behavior Space

I would like to know whether is it possible in NetLogo to set the random-seed according to the number of repetitions in the Behavior Space. I know there is the command random-seed behaviorspace-run-number, but it sets a different seed for every run…
1
2 3 4