Skip to content

Commit 0f19713

Browse files
removed display, think it was messing up the inline plots
1 parent 1fc79df commit 0f19713

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/src/model_simulation/examples/interactive_brusselator_simulation.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ lines!(ax, sol.t, sol[:Y], label = "Y", color = :red, linewidth = 3)
6565
axislegend(ax, position = :rt)
6666
6767
# Display the figure
68-
display(fig)
68+
fig
6969
```
7070

7171
<!-- This will produce a basic time series plot of the Brusselator model:
@@ -149,7 +149,7 @@ lines!(ax, lift(sol -> sol.t, solution), lift(sol -> sol[:Y], solution), label =
149149
axislegend(ax, position = :rt)
150150
151151
# Display the figure
152-
display(fig)
152+
fig
153153
```
154154
<!--
155155
The resulting figure should look like this:
@@ -238,7 +238,7 @@ colgap!(param_grid, 10)
238238
colgap!(ic_grid, 10)
239239
240240
# Display the figure
241-
display(fig)
241+
fig
242242
```
243243

244244
This will create a visualization with both time series and phase plots:

0 commit comments

Comments
 (0)