get subset of epoch data using channel names

  • MNE version: e.g. 1.2.1
  • operating system: macos 12.6

I have data as Epochs.EpochArrays object,and it comes from field trip .mat file.
I want to do some analysis on a group of sensors based on their location, I know the channels’ names that I want to use, but I am unable to find a suitable mne function or way to subset original epoch data based on a list of channels.

Load your data into an MNE epochs object - then epochs.pick_channels(CHANNEL_LIST,…). Here is the help function: mne.pick_channels — MNE 1.3.1 documentation.

–Jeff