Averaging Power across Channels

I wonder if there is any quick way to inspect power averaged across all (or a subset of) channels than to inspect across each of the individual channels. As far as I see, mne.time_frequency.AverageTFR does not allow taking an average across all channels or across picks. No such option in the plot method either.

Fwiw, I am not worried about baselining.

There is, have a look at the combine argument :wink:

tfr = ...
tfr.plot(combine="mean")
2 Likes

Err - this is awkward; how could I have missed it? Many thanks.