nicolas-starck
nicolas-starck
Yes, I am getting the error from my reproduced MoneyModel code and the code copied from the end of the Introductory Tutorial. The code below is what I was using...
The offered solution worked to resolve the ValueError, however I am also seeing an empty cell output now that the code is executing. If this is likely something distinct, we...
@tpike3 - I just updated to jupyterlab 4.3.2 and see the same behavior. 
@tpike3 - here are the current versions of those packages in my environment. iypthon - 8.27.0 ipyvue - 3.0.0a4 ipyvuetify - 3.0.0a2 solara - 1.42.0
@tpike3 - thanks for the suggestion! I was able to get it running with the following combination of packages: ipyvue - 1.11.2 ipyvuetify - 1.10.0 jupyter lab - 4.2.6 (downgraded...
I was on 3.1.0 and just updated to 3.1.4. On both versions I am getting an error trying to load `mesa.discrete_space.Network`. instead I was using `mesa.experimental.cell_space.Network`
Thanks for your help! I updated that section of `mpl_space_drawing.py` but _scatter still raised the same index error. Oddly, I have noticed that I am only getting the error when...
``` def agent_portrayal(agent): portrayal = { "size": 25, } machine_color_dict = { "A": 'xkcd:light blue', "B": 'xkcd:pale red', "I": 'xkcd:light gray', } team_color_dict = {"A": 'xkcd:blue',"B": 'xkcd:red',} if isinstance(agent, OCO):...
Got it, I appreciate your help. The zorder was my attempt to visualize multiple agents on the same cell, is there another (or better) way to achieve that effect? Perhaps...
Yes, it appears to still throw the error with only marker or zorder per agent in the `agent_portrayal` function.