Skip to content

Commit

Permalink
Merge branch 'positions' of https://github.com/unfoldtoolbox/UnfoldMa…
Browse files Browse the repository at this point in the history
…kie.jl into positions
  • Loading branch information
behinger committed Sep 11, 2023
2 parents 437be60 + 8f2159a commit 959de26
Show file tree
Hide file tree
Showing 11 changed files with 436 additions and 2,266 deletions.
5 changes: 3 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
name = "UnfoldMakie"
uuid = "69a5ce3b-64fb-4f22-ae69-36dd4416af2a"
authors = ["Benedikt Ehinger", "Vladimir Mikheev", "Daniel Baumgartner", "Sören Döring", "Niklas Gärtner"]
version = "0.3.3"

authors = ["Benedikt Ehinger","Vladimir Mikheev", "Daniel Baumgartner", "Sören Döring", "Niklas Gärtner"]
version = "0.3.4"

[deps]
AlgebraOfGraphics = "cbdf2221-f076-402e-a563-3d30da359d67"
Expand Down
6 changes: 3 additions & 3 deletions docs/src/tutorials/erpimage.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include("../../example_data.jl")

The following code will result in the default configuration.
```@example main
data,evts = UnfoldSim.predef_eeg(;noiselevel=10,return_epoched=true)
data, evts = UnfoldSim.predef_eeg(; noiselevel=10, return_epoched=true)
plot_erpimage(data)
```

Expand All @@ -33,11 +33,11 @@ Since ERP images use a `Matrix` as an input, the library does not need any infor
(sortperm() computes a permutation of the array's indices that puts the array into sorted order).


- meanPlot (bool, false) - Indicating whether the plot should add a line plot below the ERP image, showing the mean of the data. If limits are set in the axis values both plots will be aligned.
- ploterp (bool, false) - Indicating whether the plot should add a line plot below the ERP image, showing the mean of the data. If limits are set in the axis values both plots will be aligned.

```@example main
plot_erpimage(data;
extra = (meanPlot = true,),
extra = (ploterp = true,),
colorbar = (label = "Voltage [µV]",),
visual = (colormap = :viridis, colorrange = (-40, 40)))
Expand Down
Loading

0 comments on commit 959de26

Please sign in to comment.