Skip to content

Commit

Permalink
Merge e7c1f4d into 00e88d2
Browse files Browse the repository at this point in the history
  • Loading branch information
yoon-gu committed Jul 11, 2019
2 parents 00e88d2 + e7c1f4d commit a787c09
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorials/adv_tutorial.rst
Expand Up @@ -96,7 +96,7 @@ Finally, when you're ready to run the visualization, use the server's
server = ModularServer(MoneyModel,
[grid],
"Money Model",
100, 10, 10)
{"N":100, "width":10, "height":10})
server.port = 8521 # The default
server.launch()
Expand All @@ -121,7 +121,7 @@ The full code should now look like:
server = ModularServer(MoneyModel,
[grid],
"Money Model",
100, 10, 10)
{"N":100, "width":10, "height":10})
server.port = 8521 # The default
server.launch()
Expand Down Expand Up @@ -228,7 +228,7 @@ chart will appear underneath the grid.
server = ModularServer(MoneyModel,
[grid, chart],
"Money Model",
100, 10, 10)
{"N":100, "width":10, "height":10})
Launch the visualization and start a model run, and you'll see a line
chart underneath the grid. Every step of the model, the line chart
Expand Down Expand Up @@ -497,7 +497,7 @@ Now, you can create your new HistogramModule and add it to the server:
server = ModularServer(MoneyModel,
[grid, histogram, chart],
"Money Model",
100, 10, 10)
{"N":100, "width":10, "height":10})
server.launch()
Run this code, and you should see your brand-new histogram added to the
Expand Down

0 comments on commit a787c09

Please sign in to comment.