diff --git a/docs/src/how_to/mult_vis_in_fig.md b/docs/src/how_to/mult_vis_in_fig.md index f8e0f548b..b740d02df 100644 --- a/docs/src/how_to/mult_vis_in_fig.md +++ b/docs/src/how_to/mult_vis_in_fig.md @@ -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 @@ -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)) @@ -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 ```