= plot_topo(eeg)
p plot_save(p, file_name="images/plot_topo1.png")
To generate a small topomap:
= plot_topo(eeg, large=false)
p plot_save(p, file_name="images/plot_topo2.png")
Several interpolation methods are available:
:sh
: Shepard – default:mq
: Multiquadratic:imq
: Inverse Multiquadratic:tp
: ThinPlate:nn
: NearestNeighbour:ga
: Gaussian= plot_topo(eeg, imethod=:sh, title="Shepard")
p plot_save(p, file_name="images/plot_topo3.png")
= plot_topo(eeg, imethod=:mq, title="Multiquadratic")
p plot_save(p, file_name="images/plot_topo4.png")
= plot_topo(eeg, imethod=:imq, title="Inverse Multiquadratic")
p plot_save(p, file_name="images/plot_topo5.png")
= plot_topo(eeg, imethod=:tp, title="ThinPlate")
p plot_save(p, file_name="images/plot_topo6.png")
= plot_topo(eeg, imethod=:nn, title="NearestNeighbour")
p plot_save(p, file_name="images/plot_topo7.png")
= plot_topo(eeg, imethod=:ga, title="Gaussian")
p plot_save(p, file_name="images/plot_topo8.png")
All plots show topomap of the signal averaged over time window 0:10 s.
= plot_weights(eeg, connections=rand(-1:0.1:1, 19), ch=1:19)
p plot_save(p, file_name="images/plot_weights.png")
= plot_connections(eeg, connections=rand(19, 19), ch=1:19, threshold=0.5)
p plot_save(p, file_name="images/plot_connections.png")