You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Docs: List overview separate from tutorials (#2878)
This PR updates the Getting Started page to list the Overview section separately from the Tutorials.It clarifies that:- The Overview gives a passive introduction to Mesa’s features and structure.- The Tutorials are for hands-on, step-by-step learning.
Copy file name to clipboardExpand all lines: docs/getting_started.md
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,10 +3,14 @@ Mesa is a modular framework for building, analyzing and visualizing agent-based
3
3
4
4
**Agent-based models** are computer simulations involving multiple entities (the agents) acting and interacting with one another based on their programmed behavior. Agents can be used to represent living cells, animals, individual humans, even entire organizations or abstract entities. Sometimes, we may have an understanding of how the individual components of a system behave, and want to see what system-level behaviors and effects emerge from their interaction. Other times, we may have a good idea of how the system overall behaves, and want to figure out what individual behaviors explain it. Or we may want to see how to get agents to cooperate or compete most effectively. Or we may just want to build a cool toy with colorful little dots moving around.
5
5
6
-
##Tutorials
7
-
If you want to get aquick start on how to build agent based models with MESA, check the overview and tutorials:
6
+
##Overview
7
+
If you want to get ageneral idea of Mesa’s features and structure, start here:
8
8
9
9
-[Overview of the MESA library](overview): Learn about the core concepts and components of Mesa.
10
+
11
+
##Tutorials
12
+
If you want to learn how to build agent-based models step by step using Mesa, follow these tutorials :
13
+
10
14
-[Creating Your First Model](tutorials/0_first_model): Learn how to create your first Mesa model.
11
15
-[Adding Space](tutorials/1_adding_space): Learn how to add space to your Mesa model and understand Mesa's space architecture.
12
16
-[Collecting Data](tutorials/2_collecting_data): Learn how to collect model level and agent level data with Mesa' DataCollector.