Skip to content

Commit

Permalink
error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vladdez committed Nov 14, 2023
1 parent b9e592a commit 7d491d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/literate/tutorials/erp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ plot_erp(
res_effects;
mapping = (; y = :yhat, color = :continuous, group = :continuous),
legend = (; nbanks = 2),
layout = (; legendPosition = :right),
showLegend = true, categoricalColor = false, categoricalGroup = true,
layout = (; showLegend = true, legendPosition = :right),
categoricalColor = false, categoricalGroup = true,
)


Expand Down
7 changes: 7 additions & 0 deletions test/test_plot_circulareegtopoplot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -61,3 +61,10 @@ end
axis = (; label = "Time?!"), predictor = :time, predictorBounds = [80, 320],)
f
end

@testset "circularplot plot in GridLayout" begin
f = Figure(resolution=(2000, 2000))
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])
f
end

0 comments on commit 7d491d5

Please sign in to comment.