Skip to content

Commit

Permalink
doc: restore points in doc page
Browse files Browse the repository at this point in the history
  • Loading branch information
tpoisot committed Jun 29, 2024
1 parent 7138ba0 commit e628ae5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/src/vignettes/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@ directly in a pipeline. Proposed sampling locations can then be overlayed onto
the original uncertainty matrix:

```@example 1
plt = heatmap(U)
#scatter!(plt, [x[1] for x in locations], [x[2] for x in locations], ms=2.5, mc=:white, label="")
fig = Figure()
ax = Axis(fig[1,1])
heatmap!(ax, U)
scatter!(ax, [x[1] for x in locations], [x[2] for x in locations], markersize=2.5, color=:white, label="")
hidedecorations!(ax)
current_figure()
```

0 comments on commit e628ae5

Please sign in to comment.