From 69cb6c477295a066046ba8c1a270779fbdde26ab Mon Sep 17 00:00:00 2001 From: "behinger (s-ccs 001)" Date: Sun, 26 Nov 2023 09:34:59 +0000 Subject: [PATCH] small fixes --- docs/src/tutorials/parallelcoordinates.md | 6 ++++-- src/UnfoldMakie.jl | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/src/tutorials/parallelcoordinates.md b/docs/src/tutorials/parallelcoordinates.md index 9750c052..3379f6cb 100644 --- a/docs/src/tutorials/parallelcoordinates.md +++ b/docs/src/tutorials/parallelcoordinates.md @@ -58,7 +58,9 @@ plot_parallelcoordinates(subset(results_plot,:channel=>x->x.<5); it can be helpful to "bend" the lines ```@example main -plot_parallelcoordinates(subset(results_plot,:channel=>x->x.<5); - visual = (;color = :darkblue),ax_labels=["Fz","Cz","O1","O2"]) +f = Figure() +plot_parallelcoordinates(f[1,1],subset(results_plot,:channel=>x->x.<10)) +plot_parallelcoordinates(f[2,1],subset(results_plot,:channel=>x->x.<10),bend=true) +f ``` \ No newline at end of file diff --git a/src/UnfoldMakie.jl b/src/UnfoldMakie.jl index d2f79538..a45b3f51 100644 --- a/src/UnfoldMakie.jl +++ b/src/UnfoldMakie.jl @@ -63,7 +63,7 @@ export plot_erpimage! export plot_topoplot export plot_topoplot! export plot_parallelcoordinates -export plot_parallelcoordinates! + export plot_butterfly export plot_butterfly! export plot_circulareegtopoplot