using NeuroAnalyzer
using Plots
= load("files/eeg.hdf")
eeg load_locs!(eeg, file_name="files/standard-10-20-cap19-elmiko.ced")
trim!(eeg, seg=(0, 20), remove_epochs=false)
NeuroAnalyzer tutorials: Animate
Load data:
Prepare animation:
= 0:0.01:10
ts = @animate for idx in 1:length(ts)
anim @info "Generating frame: $idx/$(length(ts))"
plot_topo(eeg, seg=(ts[idx], ts[idx]+0.1), ch="eeg")
end
gif(anim, "images/anim_fps10.gif", fps = 10)