Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
GiulioRossetti committed Jul 27, 2017
1 parent 1bf59de commit 2af9bff
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ In order to execute the simulation one, or more, iterations must be required usi
# Simulation
iterations = model.iteration_bunch(200)
trends = model.build_trends(iterations)
trends = model.build_trends(iterations)
---------------------
Visualize the results
Expand Down Expand Up @@ -129,7 +129,7 @@ Multiplots - implemented only for the ``bokeh`` provider - are also useful to co
config.add_model_parameter("percentage_infected", 0.05)
sis_model.set_initial_status(config)
iterations = sis_model.iteration_bunch(200)
trends = model.build_trends(iterations)
trends = model.build_trends(iterations)
viz = DiffusionTrend(sis_model, trends)
p3 = viz.plot(width=400, height=400)
Expand All @@ -142,7 +142,7 @@ Multiplots - implemented only for the ``bokeh`` provider - are also useful to co
config.add_model_parameter("percentage_infected", 0.05)
si_model.set_initial_status(config)
iterations = si_model.iteration_bunch(200)
trends = model.build_trends(iterations)
trends = model.build_trends(iterations)
viz = DiffusionTrend(si_model, trends)
p4 = viz.plot(width=400, height=400)
Expand All @@ -160,7 +160,7 @@ Multiplots - implemented only for the ``bokeh`` provider - are also useful to co
config.add_model_parameter("percentage_infected", 0.30)
th_model.set_initial_status(config)
iterations = th_model.iteration_bunch(60)
trends = model.build_trends(iterations)
trends = model.build_trends(iterations)
viz = DiffusionTrend(th_model, trends)
p5 = viz.plot(width=400, height=400)
Expand Down

0 comments on commit 2af9bff

Please sign in to comment.