In NetLogo Behaviour Space, how can I vary two variables simulatenously?

I have two reactions, themes 1 and 2. I want to run an experiment in NetLogo wherein both themes 1 and 2 are changing in the same experiment as:

First data point: Theme 1: 0, Theme 2: 0
Second data point: Theme 1: 10, Theme 2: 0
Third data point: Theme 1: 0, Theme 2: 10
Fourth data point: Theme 1: 10, Theme 2: 10

How can I do that?

If I am understanding you correctly, the standard way to use BehaviorSpace does this automatically. If you set the values or ranges you want for each variable, BehaviorSpace will run all combinations of those variables. So in your example, if you set:

That would run four experiments like you want. If you want a whole range you do that like:

which would run 36 runs (every combination for each theme from 0 to 10 going by twos: 0, 2, 4, 6, 8, 10).

1 Like

That worked, thank you!

1 Like