Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
vladdez committed Nov 14, 2023
1 parent c9a6fa9 commit b6e3341
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/how_to/mult_vis_in_fig.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,14 @@ We start by creating a figure with Makie.Figure.

`f = Figure()`

Now any plot can be added to `f` by placing a grid position, such as `f[1,1]`.
Now any plot can be added to `f` by placing a grid position, such as `f[1, 1]`.

```@example main
f = Figure()
plot_erp!(f[1, 1], coeftable(uf_deconv))
plot_erp!(f[1, 2], effects(Dict(:condition => ["car", "face"]), uf_deconv), mapping=(; color=:condition))
plot_erp!(f[1, 2], effects(Dict(:condition => ["car", "face"]), uf_deconv),
mapping=(; color=:condition))
plot_butterfly!(f[2, 1:2], d_topo; positions=positions)
f
Expand Down Expand Up @@ -67,7 +68,6 @@ plot_erp!(f[2, 1:2], results,
plot_designmatrix!(f[2, 3], designmatrix(uf))
#plot_topoplot!(f[3, 1], collect(1:64); positions=positions, visual=(; colormap=:viridis))
plot_topoplot!(f[3, 1], data[:, 150, 1]; positions=positions)
plot_topoplotseries!(f[4, 1:3], d_topo, 0.1; positions=positions, mapping=(; label=:channel))
Expand All @@ -82,7 +82,7 @@ plot_parallelcoordinates!(f[3, 2:3], uf_5chan, [1, 2, 3, 4, 5]; mapping=(; color
plot_erpimage!(f[1, 4:5], times, d_singletrial)
plot_circulareegtopoplot!(f[3:4, 4:5], d_topo[in.(d_topo.time, Ref(-0.3:0.1:0.5)), :];
positions=positions, predictor=:time,predictorBounds=[-0.3, 0.5])
positions=positions, predictor=:time, predictorBounds=[-0.3, 0.5])
f
```
Expand Down

0 comments on commit b6e3341

Please sign in to comment.