Just a few things I wanted to do with plots lately but don’t know how to implement. Any help would be appreciated!
- How do you to get graphs to update on setup? (Currently, I just have the setup function
perform a tick to cause the graphs to populate themselves, but then my ticks start at 1 which is not preferable) - If I have a turtle-owned variable, how can I make a plot that draws the value of the variable at each tick for each turtle - eg. Having a pen monitoring individual agent’s variable can be programmatically created on setup?
- Is there a way to override the fact that (from the histogram netlogo documentation) “For histogramming purposes the plot’s X range is not considered to include the maximum X value. Values equal to the maximum X will fall outside of the histogram’s range.”? I want to override this as it causes turtle-owned float values of 1.0 to not be graphed in a histogram ranging from 0 to 1. (my current fix is setting the range to 1.1)
Thanks!