How to "excel" mesa properly #1047
-
Hi guys, I'm new on Mesa and quite new on Python too (please be patient with me :) ) and I'm starting to develop some agent-based models. I'm struggling a bit with the API's reference and Docs and I'm not being able to find more detailed references to some classes methods like MultiGrid and SimpleGrid. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
There is a problem with the documentation generation. https://mesa.readthedocs.io/en/master/apis/space.html is empty, while https://github.com/projectmesa/mesa/blob/af4de1d31d62b3e8dd71606bd94ed643902821e3/mesa/space.py still has some docstrings. In the meantime, you can just read the docstring in https://github.com/projectmesa/mesa/blob/af4de1d31d62b3e8dd71606bd94ed643902821e3/mesa/space.py. It's not as nicely formatted, but it has the info you need. |
Beta Was this translation helpful? Give feedback.
There is a problem with the documentation generation. https://mesa.readthedocs.io/en/master/apis/space.html is empty, while https://github.com/projectmesa/mesa/blob/af4de1d31d62b3e8dd71606bd94ed643902821e3/mesa/space.py still has some docstrings.
I think the Mypy annotation broke the doc. I will try to fix it.
In the meantime, you can just read the docstring in https://github.com/projectmesa/mesa/blob/af4de1d31d62b3e8dd71606bd94ed643902821e3/mesa/space.py. It's not as nicely formatted, but it has the info you need.