โน Computer information
- Platform OS: Mac
- Python Version: 3.7
- Brain Interface Used: Muse
๐ Provide detailed reproduction steps (if any)
- Run
examples/visual_p300/01r__p300_viz.py
โ๏ธ Expected result

I think is just changing order when concatenating lists in https://github.com/NeuroTechX/eeg-notebooks/blob/master/eegnb/analysis/utils.py#L307
Instead of:
legend = ["{} - {}".format(diff_waveform[1], diff_waveform[0])] + list(
conditions.keys()
)
could be something like:
legend = list(conditions.keys()) + ["{} - {}".format(diff_waveform[1], diff_waveform[0])]
โ Actual result

๐ท Screenshots
To check and identify wave forms and legend items, I compared with Alexandre's article in: http://alexandre.barachant.org/blog/2017/02/05/P300-with-muse.html

โน Computer information
๐ Provide detailed reproduction steps (if any)
examples/visual_p300/01r__p300_viz.pyโ๏ธ Expected result
I think is just changing order when concatenating lists in https://github.com/NeuroTechX/eeg-notebooks/blob/master/eegnb/analysis/utils.py#L307
Instead of:
could be something like:
legend = list(conditions.keys()) + ["{} - {}".format(diff_waveform[1], diff_waveform[0])]โ Actual result
๐ท Screenshots
To check and identify wave forms and legend items, I compared with Alexandre's article in: http://alexandre.barachant.org/blog/2017/02/05/P300-with-muse.html