InteractiveDynamics.jl
InteractiveDynamics.jl copied to clipboard
Fast, general-purpose interactive applications for complex systems
I want to plot an Agent Based Model with each agent being one square of color so that the plot doesn't have any white space. To do so I have...
It would be nice if we had a button that has functionality similar to `reset`, but a bit different. Sometimes, you would like to reset a model, but to a...
When using `interactive_evolution` (and possibly other function that support `idxs`; I haven't tested them), the `idxs` parameter doesn't seem to behave correctly. When using DynamicalSystem's double pendulum system (param order...
Now that Makie.jl has support for text input boxes, we should use those to replace the current boxes that just state the values of the limits (so that users can...
The documentation of Agents.jl states that `interactive applications of Agents.jl work for any agent based model`. So I went ahead and tried it with two different `GraphSpace()` models and found...
Hi, I encountered a MethodError, when using Rodas5 to compute the timeseries of a 3D dynamical system. It works fine with other solvers such as Vern9. The example code reads...
MWE: ```julia using Agents using InteractiveDynamics import GLMakie @agent Person GridAgent{2} begin wealth::Int end function agent_step!(agent, abm) agent.wealth == 0 && return # do nothing na = collect(nearby_ids(agent, abm)) if...
At the moment this package is not really tested. Problem is, I don't even know how to test it on CI. I've been advised to copy Makie tests, but I'm...
A default colorscheme, that uses current colormap of JuliaDynamics should be implemented and used where most random colors are used now.
This is a feature request. I can see from reading the history on the repo that when 3D plotting functionality was added, that one goal was to have it be...