Number of channels/electrodes in EEG raw data

Hi @LEPacheco

have you tried:

import mne

raw = mne.io.read_raw(YOUR-FILE-NAME.edf)
raw.ch_names

Which will print out the channel names in the order that they occur in the underlying data.

3 Likes