├── .gitignore ├── LICENSE ├── README.md ├── agentpy_workshop.ipynb ├── networks.png ├── notebooks ├── agentpy_button_network.ipynb ├── agentpy_flocking.ipynb ├── agentpy_forest_fire.ipynb ├── agentpy_segregation.ipynb ├── agentpy_virus_spread.ipynb ├── agentpy_wealth_transfer.ipynb ├── guide_ema.ipynb ├── guide_interactive.ipynb └── guide_random.ipynb ├── requirements.txt └── structure.png /.gitignore: -------------------------------------------------------------------------------- 1 | ap_output/ 2 | .ipynb_checkpoints 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/README.md -------------------------------------------------------------------------------- /agentpy_workshop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/agentpy_workshop.ipynb -------------------------------------------------------------------------------- /networks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/networks.png -------------------------------------------------------------------------------- /notebooks/agentpy_button_network.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/agentpy_button_network.ipynb -------------------------------------------------------------------------------- /notebooks/agentpy_flocking.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/agentpy_flocking.ipynb -------------------------------------------------------------------------------- /notebooks/agentpy_forest_fire.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/agentpy_forest_fire.ipynb -------------------------------------------------------------------------------- /notebooks/agentpy_segregation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/agentpy_segregation.ipynb -------------------------------------------------------------------------------- /notebooks/agentpy_virus_spread.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/agentpy_virus_spread.ipynb -------------------------------------------------------------------------------- /notebooks/agentpy_wealth_transfer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/agentpy_wealth_transfer.ipynb -------------------------------------------------------------------------------- /notebooks/guide_ema.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/guide_ema.ipynb -------------------------------------------------------------------------------- /notebooks/guide_interactive.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/guide_interactive.ipynb -------------------------------------------------------------------------------- /notebooks/guide_random.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/notebooks/guide_random.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | agentpy>=0.1.5 2 | seaborn 3 | jupyter 4 | -------------------------------------------------------------------------------- /structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jofmi/agentpy_workshop/HEAD/structure.png --------------------------------------------------------------------------------