I work with polysomnographic data marked with different annotations (REM sleep, EOG REM, EMG phasic, EMG Tonic, etc).
I extracted the period of interest with mne.events_from_annotations, but I cannot find a solution to define the period with the superposition of annotation. For example, I would like to compare REM sleep+EOG REM Vs EOG REM without REM sleep.
How can I extract this period of signal excluding or cumulating different annotations?
I would create my own annotations that has new annotation entries for overlapping periods.
Then put a description that is the concatenation of the 2 overlapping descriptions and then reuse
events_from_annotations.
given an Annotations object called annot you have annot.onset, annot.duration and annot.description
that are 3 numpy arrays. You can update / manipulate them.
then you can recreate a new annotation with mne.Annotations(new_onset, new_duration, new_description)
then raw.set_annotations(new_annotations)