Skip to content

Commit 71d48ec

Browse files
committed
updating requirements to fix tutorial build.
1 parent 6486bfe commit 71d48ec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/intro-tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ Now let's use matplotlib and numpy to visualize the number of agents residing in
405405
Collecting Data
406406
~~~~~~~~~~~~~~~~~
407407

408-
So far, at the end of every model run, we've had to go and write our own code to get the data out of the model. This works, but has two problems: it isn't very efficient, and it only gives us end results. If we wanted to know the wealth of each agent at each step, for example, we'd have to add that to the loop of executing steps, and figure out some way to store the data.
408+
So far, at the end of every model run, we've had to go and write our own code to get the data out of the model. This has two problems: it isn't very efficient, and it only gives us end results. If we wanted to know the wealth of each agent at each step, we'd have to add that to the loop of executing steps, and figure out some way to store the data.
409409

410410
Since one of the main goals of agent-based modeling is generating data for analysis, Mesa provides a class which can handle data collection and storage for us and make it easier to analyze.
411411

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
numpy
2-
scipy
1+
numpy==1.11.0
2+
scipy==0.17.0
33
pandas==0.17.1
44
ipython==4.1.1
55

0 commit comments

Comments
 (0)