Jan Kwakkel

Results 545 comments of Jan Kwakkel

ah, had I know you were using platypus I would have been able to tell you this right away. We might still consider having a set_random_state function on the workbench...

Started looking into this. [This discussion](https://stackoverflow.com/questions/16016959/scipy-stats-seed) on StackOverflow is quite useful. It seems the preferred approach is ```python from numpy.random import Generator, PCG64 # Case 3 (IMP) : Scipy uses...

I agree, returning the figure is the obvious fix. In the meantime, you can use `plt.gcf()` to get it.

I was just checking the code. [`parcoords.ParallelAxes()`](https://emaworkbench.readthedocs.io/en/latest/ema_documentation/analysis/parcoords.html) is a class and `fig` is one of its attributes. So in principle, there is no need to have `ParallelAxes.plot()` return the figure...

any netlogo command, or string of commands, can be sent from pynetlogo. So, rather than doing the while loop in python, you can do `repeat 10 go` in order to...

There is a repeat while option available that might do what you want.

I started looking into this, but it is a nontrivial issue to fix in general. We have to mimic the behavior of the [MaxNLocator](https://matplotlib.org/3.4.3/api/ticker_api.html#matplotlib.ticker.MaxNLocator). This locator uses the view limits,...

exactly on which pynetlogo command do you get the error? It seems that all references to ix have been removed from master, so it should be possible to release a...

what happens if you put a command statement right after the load model command? my first hunch is that something goes wrong with threading. I have however never used Dash...