How to read event file of bdf format?

  • MNE version: 1.5.1
  • operating system: Windows 11

My EEG data contains two files, one is data.bdf, the other is evt.bdf. I can load data.bdf by mne.io.read_raw_bdf, but this raw file does not contain event information. How to load evt.bdf? I tried find_events and read_events, both of them didn’t work.

You might want to try mne.read_annotations().

2 Likes

This works! Thanks.