How to select particular set of channels?

You can use mne.read_selection(), as pointed out in this posting:

So what you’d do is something like:

picks = mne.read_selection('occipital', info=raw.info)
raw_occipital = raw.copy().pick(picks)
raw_occipital.plot_psd()
1 Like