Compute evoked ERS source power using DICS, LCMV beamformer, and dSPM

Here we examine 3 ways of localizing event-related synchronization (ERS) of beta band activity in this dataset: Somatosensory using DICS, LCMV beamformer, and dSPM applied to active and baseline covariance matrices.

# Authors: Luke Bloy <luke.bloy@gmail.com>
#          Eric Larson <larson.eric.d@gmail.com>
#
# License: BSD (3-clause)
import os.path as op

import numpy as np
import mne
from mne.cov import compute_covariance
from mne.datasets import somato
from mne.time_frequency import csd_morlet
from mne.beamformer import (make_dics, apply_dics_csd, make_lcmv,
                            apply_lcmv_cov)
from mne.minimum_norm import (make_inverse_operator, apply_inverse_cov)

print(__doc__)

Reading the raw data and creating epochs:

data_path = somato.data_path()
subject = '01'
task = 'somato'
raw_fname = op.join(data_path, 'sub-{}'.format(subject), 'meg',
                    'sub-{}_task-{}_meg.fif'.format(subject, task))

# crop to 5 minutes to save memory
raw = mne.io.read_raw_fif(raw_fname).crop(0, 300)

# We are interested in the beta band (12-30 Hz)
raw.load_data().filter(12, 30)

# The DICS beamformer currently only supports a single sensor type.
# We'll use the gradiometers in this example.
picks = mne.pick_types(raw.info, meg='grad', exclude='bads')

# Read epochs
events = mne.find_events(raw)
epochs = mne.Epochs(raw, events, event_id=1, tmin=-1.5, tmax=2, picks=picks,
                    preload=True, decim=3)

# Read forward operator and point to freesurfer subject directory
fname_fwd = op.join(data_path, 'derivatives', 'sub-{}'.format(subject),
                    'sub-{}_task-{}-fwd.fif'.format(subject, task))
subjects_dir = op.join(data_path, 'derivatives', 'freesurfer', 'subjects')

fwd = mne.read_forward_solution(fname_fwd)

Out:

Opening raw data file /home/circleci/mne_data/MNE-somato-data/sub-01/meg/sub-01_task-somato_meg.fif...
    Range : 237600 ... 506999 =    791.189 ...  1688.266 secs
Ready.
Reading 0 ... 90092  =      0.000 ...   299.999 secs...
Filtering raw data in 1 contiguous segment
Setting up band-pass filter from 12 - 30 Hz

FIR filter parameters
---------------------
Designing a one-pass, zero-phase, non-causal bandpass filter:
- Windowed time-domain design (firwin) method
- Hamming window with 0.0194 passband ripple and 53 dB stopband attenuation
- Lower passband edge: 12.00
- Lower transition bandwidth: 3.00 Hz (-6 dB cutoff frequency: 10.50 Hz)
- Upper passband edge: 30.00 Hz
- Upper transition bandwidth: 7.50 Hz (-6 dB cutoff frequency: 33.75 Hz)
- Filter length: 331 samples (1.102 sec)

37 events found
Event IDs: [1]
Not setting metadata
Not setting metadata
37 matching events found
Setting baseline interval to [-1.498464098687909, 0.0] sec
Applying baseline correction (mode: mean)
0 projection items activated
Loading data for 37 events and 1052 original time points ...
0 bad epochs dropped
Reading forward solution from /home/circleci/mne_data/MNE-somato-data/derivatives/sub-01/sub-01_task-somato-fwd.fif...
    Reading a source space...
    [done]
    Reading a source space...
    [done]
    2 source spaces read
    Desired named matrix (kind = 3523) not available
    Read MEG forward solution (8155 sources, 306 channels, free orientations)
    Source spaces transformed to the forward solution coordinate frame

Compute covariances

ERS activity starts at 0.5 seconds after stimulus onset.

active_win = (0.5, 1.5)
baseline_win = (-1, 0)

baseline_cov = compute_covariance(epochs, tmin=baseline_win[0],
                                  tmax=baseline_win[1], method='shrunk',
                                  rank=None)
active_cov = compute_covariance(epochs, tmin=active_win[0], tmax=active_win[1],
                                method='shrunk', rank=None)

# Weighted averaging is already in the addition of covariance objects.
common_cov = baseline_cov + active_cov

Out:

Computing rank from data with rank=None
    Using tolerance 6.5e-10 (2.2e-16 eps * 204 dim * 1.4e+04  max singular value)
    Estimated rank (grad): 204
    GRAD: rank 204 computed from 204 data channels with 0 projectors
Reducing data rank from 204 -> 204
Estimating covariance using SHRUNK
Done.
Number of samples used : 3737
[done]
Computing rank from data with rank=None
    Using tolerance 7.1e-10 (2.2e-16 eps * 204 dim * 1.6e+04  max singular value)
    Estimated rank (grad): 204
    GRAD: rank 204 computed from 204 data channels with 0 projectors
Reducing data rank from 204 -> 204
Estimating covariance using SHRUNK
Done.
Number of samples used : 3737
[done]

Compute some source estimates

Here we will use DICS, LCMV beamformer, and dSPM.

See Compute source power using DICS beamformer for more information about DICS.

def _gen_dics(active_win, baseline_win, epochs):
    freqs = np.logspace(np.log10(12), np.log10(30), 9)
    csd = csd_morlet(epochs, freqs, tmin=-1, tmax=1.5, decim=20)
    csd_baseline = csd_morlet(epochs, freqs, tmin=baseline_win[0],
                              tmax=baseline_win[1], decim=20)
    csd_ers = csd_morlet(epochs, freqs, tmin=active_win[0], tmax=active_win[1],
                         decim=20)
    filters = make_dics(epochs.info, fwd, csd.mean(), pick_ori='max-power',
                        reduce_rank=True)
    stc_base, freqs = apply_dics_csd(csd_baseline.mean(), filters)
    stc_act, freqs = apply_dics_csd(csd_ers.mean(), filters)
    stc_act /= stc_base
    return stc_act


# generate lcmv source estimate
def _gen_lcmv(active_cov, baseline_cov, common_cov):
    filters = make_lcmv(epochs.info, fwd, common_cov, reg=0.05,
                        noise_cov=None, pick_ori='max-power')
    stc_base = apply_lcmv_cov(baseline_cov, filters)
    stc_act = apply_lcmv_cov(active_cov, filters)
    stc_act /= stc_base
    return stc_act


# generate mne/dSPM source estimate
def _gen_mne(active_cov, baseline_cov, common_cov, fwd, info, method='dSPM'):
    inverse_operator = make_inverse_operator(info, fwd, common_cov)
    stc_act = apply_inverse_cov(active_cov, info, inverse_operator,
                                method=method, verbose=True)
    stc_base = apply_inverse_cov(baseline_cov, info, inverse_operator,
                                 method=method, verbose=True)
    stc_act /= stc_base
    return stc_act


# Compute source estimates
stc_dics = _gen_dics(active_win, baseline_win, epochs)
stc_lcmv = _gen_lcmv(active_cov, baseline_cov, common_cov)
stc_dspm = _gen_mne(active_cov, baseline_cov, common_cov, fwd, epochs.info)

Out:

Computing cross-spectral density from epochs...

  0%|          | CSD epoch blocks : 0/37 [00:00<?,       ?it/s]
  3%|2         | CSD epoch blocks : 1/37 [00:00<00:02,   14.53it/s]
  5%|5         | CSD epoch blocks : 2/37 [00:00<00:02,   16.21it/s]
  8%|8         | CSD epoch blocks : 3/37 [00:00<00:02,   16.38it/s]
 11%|#         | CSD epoch blocks : 4/37 [00:00<00:01,   16.68it/s]
 14%|#3        | CSD epoch blocks : 5/37 [00:00<00:01,   16.83it/s]
 16%|#6        | CSD epoch blocks : 6/37 [00:00<00:01,   16.83it/s]
 19%|#8        | CSD epoch blocks : 7/37 [00:00<00:01,   17.02it/s]
 22%|##1       | CSD epoch blocks : 8/37 [00:00<00:01,   16.98it/s]
 24%|##4       | CSD epoch blocks : 9/37 [00:00<00:01,   17.06it/s]
 27%|##7       | CSD epoch blocks : 10/37 [00:00<00:01,   17.02it/s]
 30%|##9       | CSD epoch blocks : 11/37 [00:00<00:01,   17.03it/s]
 32%|###2      | CSD epoch blocks : 12/37 [00:00<00:01,   17.10it/s]
 35%|###5      | CSD epoch blocks : 13/37 [00:00<00:01,   17.08it/s]
 38%|###7      | CSD epoch blocks : 14/37 [00:00<00:01,   17.17it/s]
 41%|####      | CSD epoch blocks : 15/37 [00:00<00:01,   17.06it/s]
 43%|####3     | CSD epoch blocks : 16/37 [00:00<00:01,   17.07it/s]
 46%|####5     | CSD epoch blocks : 17/37 [00:00<00:01,   17.04it/s]
 49%|####8     | CSD epoch blocks : 18/37 [00:01<00:01,   16.98it/s]
 51%|#####1    | CSD epoch blocks : 19/37 [00:01<00:01,   17.05it/s]
 54%|#####4    | CSD epoch blocks : 20/37 [00:01<00:01,   16.96it/s]
 57%|#####6    | CSD epoch blocks : 21/37 [00:01<00:00,   16.95it/s]
 59%|#####9    | CSD epoch blocks : 22/37 [00:01<00:00,   16.94it/s]
 62%|######2   | CSD epoch blocks : 23/37 [00:01<00:00,   16.89it/s]
 65%|######4   | CSD epoch blocks : 24/37 [00:01<00:00,   16.95it/s]
 68%|######7   | CSD epoch blocks : 25/37 [00:01<00:00,   16.87it/s]
 70%|#######   | CSD epoch blocks : 26/37 [00:01<00:00,   16.88it/s]
 73%|#######2  | CSD epoch blocks : 27/37 [00:01<00:00,   16.87it/s]
 76%|#######5  | CSD epoch blocks : 28/37 [00:01<00:00,   16.83it/s]
 78%|#######8  | CSD epoch blocks : 29/37 [00:01<00:00,   16.88it/s]
 81%|########1 | CSD epoch blocks : 30/37 [00:01<00:00,   16.82it/s]
 84%|########3 | CSD epoch blocks : 31/37 [00:01<00:00,   16.86it/s]
 86%|########6 | CSD epoch blocks : 32/37 [00:01<00:00,   16.84it/s]
 89%|########9 | CSD epoch blocks : 33/37 [00:01<00:00,   16.83it/s]
 92%|#########1| CSD epoch blocks : 34/37 [00:02<00:00,   16.88it/s]
 95%|#########4| CSD epoch blocks : 35/37 [00:02<00:00,   16.84it/s]
 97%|#########7| CSD epoch blocks : 36/37 [00:02<00:00,   16.89it/s]
100%|##########| CSD epoch blocks : 37/37 [00:02<00:00,   16.87it/s]
100%|##########| CSD epoch blocks : 37/37 [00:02<00:00,   16.89it/s]
[done]
Computing cross-spectral density from epochs...

  0%|          | CSD epoch blocks : 0/37 [00:00<?,       ?it/s]
  3%|2         | CSD epoch blocks : 1/37 [00:00<00:01,   18.84it/s]
  5%|5         | CSD epoch blocks : 2/37 [00:00<00:01,   19.95it/s]
  8%|8         | CSD epoch blocks : 3/37 [00:00<00:01,   19.75it/s]
 11%|#         | CSD epoch blocks : 4/37 [00:00<00:01,   20.05it/s]
 14%|#3        | CSD epoch blocks : 5/37 [00:00<00:01,   19.83it/s]
 16%|#6        | CSD epoch blocks : 6/37 [00:00<00:01,   20.05it/s]
 19%|#8        | CSD epoch blocks : 7/37 [00:00<00:01,   19.91it/s]
 22%|##1       | CSD epoch blocks : 8/37 [00:00<00:01,   19.98it/s]
 24%|##4       | CSD epoch blocks : 9/37 [00:00<00:01,   19.86it/s]
 27%|##7       | CSD epoch blocks : 10/37 [00:00<00:01,   20.01it/s]
 30%|##9       | CSD epoch blocks : 11/37 [00:00<00:01,   19.92it/s]
 32%|###2      | CSD epoch blocks : 12/37 [00:00<00:01,   20.05it/s]
 35%|###5      | CSD epoch blocks : 13/37 [00:00<00:01,   19.96it/s]
 38%|###7      | CSD epoch blocks : 14/37 [00:00<00:01,   20.03it/s]
 41%|####      | CSD epoch blocks : 15/37 [00:00<00:01,   19.94it/s]
 43%|####3     | CSD epoch blocks : 16/37 [00:00<00:01,   20.03it/s]
 46%|####5     | CSD epoch blocks : 17/37 [00:00<00:01,   19.93it/s]
 49%|####8     | CSD epoch blocks : 18/37 [00:00<00:00,   20.01it/s]
 51%|#####1    | CSD epoch blocks : 19/37 [00:00<00:00,   19.93it/s]
 54%|#####4    | CSD epoch blocks : 20/37 [00:01<00:00,   20.01it/s]
 57%|#####6    | CSD epoch blocks : 21/37 [00:01<00:00,   19.93it/s]
 59%|#####9    | CSD epoch blocks : 22/37 [00:01<00:00,   20.00it/s]
 62%|######2   | CSD epoch blocks : 23/37 [00:01<00:00,   19.94it/s]
 65%|######4   | CSD epoch blocks : 24/37 [00:01<00:00,   20.01it/s]
 68%|######7   | CSD epoch blocks : 25/37 [00:01<00:00,   19.95it/s]
 70%|#######   | CSD epoch blocks : 26/37 [00:01<00:00,   20.03it/s]
 73%|#######2  | CSD epoch blocks : 27/37 [00:01<00:00,   19.96it/s]
 76%|#######5  | CSD epoch blocks : 28/37 [00:01<00:00,   20.03it/s]
 78%|#######8  | CSD epoch blocks : 29/37 [00:01<00:00,   19.98it/s]
 81%|########1 | CSD epoch blocks : 30/37 [00:01<00:00,   20.04it/s]
 84%|########3 | CSD epoch blocks : 31/37 [00:01<00:00,   19.99it/s]
 86%|########6 | CSD epoch blocks : 32/37 [00:01<00:00,   20.05it/s]
 89%|########9 | CSD epoch blocks : 33/37 [00:01<00:00,   19.98it/s]
 92%|#########1| CSD epoch blocks : 34/37 [00:01<00:00,   20.04it/s]
 95%|#########4| CSD epoch blocks : 35/37 [00:01<00:00,   19.98it/s]
 97%|#########7| CSD epoch blocks : 36/37 [00:01<00:00,   20.04it/s]
100%|##########| CSD epoch blocks : 37/37 [00:01<00:00,   19.99it/s]
100%|##########| CSD epoch blocks : 37/37 [00:01<00:00,   19.98it/s]
[done]
Computing cross-spectral density from epochs...

  0%|          | CSD epoch blocks : 0/37 [00:00<?,       ?it/s]
  3%|2         | CSD epoch blocks : 1/37 [00:00<00:01,   21.40it/s]
  5%|5         | CSD epoch blocks : 2/37 [00:00<00:01,   19.87it/s]
  8%|8         | CSD epoch blocks : 3/37 [00:00<00:01,   20.49it/s]
 11%|#         | CSD epoch blocks : 4/37 [00:00<00:01,   19.97it/s]
 14%|#3        | CSD epoch blocks : 5/37 [00:00<00:01,   20.37it/s]
 16%|#6        | CSD epoch blocks : 6/37 [00:00<00:01,   20.03it/s]
 19%|#8        | CSD epoch blocks : 7/37 [00:00<00:01,   20.27it/s]
 22%|##1       | CSD epoch blocks : 8/37 [00:00<00:01,   20.01it/s]
 24%|##4       | CSD epoch blocks : 9/37 [00:00<00:01,   20.24it/s]
 27%|##7       | CSD epoch blocks : 10/37 [00:00<00:01,   20.01it/s]
 30%|##9       | CSD epoch blocks : 11/37 [00:00<00:01,   20.18it/s]
 32%|###2      | CSD epoch blocks : 12/37 [00:00<00:01,   20.01it/s]
 35%|###5      | CSD epoch blocks : 13/37 [00:00<00:01,   20.16it/s]
 38%|###7      | CSD epoch blocks : 14/37 [00:00<00:01,   20.00it/s]
 41%|####      | CSD epoch blocks : 15/37 [00:00<00:01,   20.17it/s]
 43%|####3     | CSD epoch blocks : 16/37 [00:00<00:01,   20.00it/s]
 46%|####5     | CSD epoch blocks : 17/37 [00:00<00:00,   20.12it/s]
 49%|####8     | CSD epoch blocks : 18/37 [00:00<00:00,   19.99it/s]
 51%|#####1    | CSD epoch blocks : 19/37 [00:00<00:00,   20.13it/s]
 54%|#####4    | CSD epoch blocks : 20/37 [00:00<00:00,   20.01it/s]
 57%|#####6    | CSD epoch blocks : 21/37 [00:01<00:00,   20.13it/s]
 59%|#####9    | CSD epoch blocks : 22/37 [00:01<00:00,   20.02it/s]
 62%|######2   | CSD epoch blocks : 23/37 [00:01<00:00,   20.11it/s]
 65%|######4   | CSD epoch blocks : 24/37 [00:01<00:00,   20.00it/s]
 68%|######7   | CSD epoch blocks : 25/37 [00:01<00:00,   20.09it/s]
 70%|#######   | CSD epoch blocks : 26/37 [00:01<00:00,   19.96it/s]
 73%|#######2  | CSD epoch blocks : 27/37 [00:01<00:00,   20.07it/s]
 76%|#######5  | CSD epoch blocks : 28/37 [00:01<00:00,   19.98it/s]
 78%|#######8  | CSD epoch blocks : 29/37 [00:01<00:00,   20.05it/s]
 81%|########1 | CSD epoch blocks : 30/37 [00:01<00:00,   20.02it/s]
 84%|########3 | CSD epoch blocks : 31/37 [00:01<00:00,   20.11it/s]
 86%|########6 | CSD epoch blocks : 32/37 [00:01<00:00,   20.09it/s]
 89%|########9 | CSD epoch blocks : 33/37 [00:01<00:00,   20.17it/s]
 92%|#########1| CSD epoch blocks : 34/37 [00:01<00:00,   20.15it/s]
 95%|#########4| CSD epoch blocks : 35/37 [00:01<00:00,   20.23it/s]
 97%|#########7| CSD epoch blocks : 36/37 [00:01<00:00,   20.21it/s]
100%|##########| CSD epoch blocks : 37/37 [00:01<00:00,   20.27it/s]
100%|##########| CSD epoch blocks : 37/37 [00:01<00:00,   20.17it/s]
[done]
Identifying common channels ...
Dropped the following channels:
['MEG 2631', 'MEG 2521', 'MEG 0621', 'MEG 1211', 'MEG 1811', 'MEG 2411', 'MEG 2021', 'MEG 0111', 'MEG 1511', 'MEG 2621', 'MEG 1931', 'MEG 0541', 'MEG 1741', 'MEG 0131', 'MEG 1221', 'MEG 0821', 'MEG 2511', 'MEG 0431', 'MEG 0331', 'MEG 1311', 'MEG 2041', 'MEG 0741', 'MEG 0141', 'MEG 1621', 'MEG 1821', 'MEG 0511', 'MEG 0421', 'MEG 1131', 'MEG 1121', 'MEG 0341', 'MEG 0441', 'MEG 1021', 'MEG 0611', 'MEG 1141', 'MEG 2541', 'MEG 1231', 'MEG 0911', 'MEG 1641', 'MEG 2441', 'MEG 0721', 'MEG 1541', 'MEG 1831', 'MEG 1241', 'MEG 0941', 'MEG 1721', 'MEG 0231', 'MEG 2111', 'MEG 0221', 'MEG 0921', 'MEG 0631', 'MEG 1321', 'MEG 0931', 'MEG 1921', 'MEG 2531', 'MEG 2211', 'MEG 0521', 'MEG 0121', 'MEG 0711', 'MEG 1841', 'MEG 1441', 'MEG 1341', 'MEG 0531', 'MEG 1041', 'MEG 1011', 'MEG 2131', 'MEG 0411', 'MEG 1431', 'MEG 1421', 'MEG 1031', 'MEG 1941', 'MEG 2641', 'MEG 0641', 'MEG 1711', 'MEG 0311', 'MEG 1631', 'MEG 2611', 'MEG 1911', 'MEG 1531', 'MEG 1731', 'MEG 2031', 'MEG 2331', 'MEG 1611', 'MEG 2141', 'MEG 2231', 'MEG 1331', 'MEG 0321', 'MEG 2431', 'MEG 2341', 'MEG 1111', 'MEG 1411', 'MEG 0811', 'MEG 1521', 'MEG 2121', 'MEG 0241', 'MEG 2011', 'MEG 2311', 'MEG 0731', 'MEG 2241', 'MEG 0211', 'MEG 2321', 'MEG 2421', 'MEG 2221']
Computing inverse operator with 204 channels.
    204 out of 204 channels remain after picking
Selected 204 channels
Creating the depth weighting matrix...
Whitening the forward solution.
Computing rank from covariance with rank=None
    Using tolerance 4.5e+08 (2.2e-16 eps * 204 dim * 1e+22  max singular value)
    Estimated rank (grad): 204
    GRAD: rank 204 computed from 204 data channels with 0 projectors
    Setting small GRAD eigenvalues to zero (without PCA)
Creating the source covariance matrix
Adjusting source covariance matrix.
Computing rank from covariance with rank=None
    Using tolerance 1.5e-14 (2.2e-16 eps * 204 dim * 0.34  max singular value)
    Estimated rank (grad): 64
    GRAD: rank 64 computed from 204 data channels with 0 projectors
Computing DICS spatial filters...
Computing beamformer filters for 8155 sources
Filter computation complete
Computing DICS source power...
[done]
Computing DICS source power...
[done]
Computing rank from covariance with rank='info'
    GRAD: rank 204 after 0 projectors applied to 204 channels
Computing rank from covariance with rank='info'
    GRAD: rank 204 after 0 projectors applied to 204 channels
Making LCMV beamformer with rank {'grad': 204}
Computing inverse operator with 204 channels.
    204 out of 306 channels remain after picking
Selected 204 channels
Whitening the forward solution.
Computing rank from covariance with rank={'grad': 204}
    Setting small GRAD eigenvalues to zero (without PCA)
Creating the source covariance matrix
Adjusting source covariance matrix.
Computing beamformer filters for 8155 sources
Filter computation complete
Converting forward solution to surface orientation
    No patch info available. The standard source space normals will be employed in the rotation to the local surface coordinates....
    Converting to surface-based source orientations...
    [done]
Computing inverse operator with 204 channels.
    204 out of 306 channels remain after picking
Selected 204 channels
Creating the depth weighting matrix...
    204 planar channels
    limit = 7615/8155 = 10.004172
    scale = 5.17919e-08 exp = 0.8
Applying loose dipole orientations to surface source spaces: 0.2
Whitening the forward solution.
Computing rank from covariance with rank=None
    Using tolerance 2.6e-13 (2.2e-16 eps * 204 dim * 5.8  max singular value)
    Estimated rank (grad): 204
    GRAD: rank 204 computed from 204 data channels with 0 projectors
    Setting small GRAD eigenvalues to zero (without PCA)
Creating the source covariance matrix
Adjusting source covariance matrix.
Computing SVD of whitened and weighted lead field matrix.
    largest singular value = 4.31552
    scaling factor to adjust the trace = 2.44262e+21
Preparing the inverse operator for use...
    Scaled noise and source covariance from nave = 1 to nave = 1
    Created the regularized inverter
    The projection vectors do not apply to these channels.
    Created the whitener using a noise covariance matrix with rank 204 (0 small eigenvalues omitted)
    Computing noise-normalization factors (dSPM)...
[done]
Applying inverse operator to "cov"...
    Picked 204 channels from the data
    Computing inverse...
    Eigenleads need to be weighted ...
    Computing residual...
    Explained  56.5% variance
    dSPM...
    Combining the current components...
[done]
Preparing the inverse operator for use...
    Scaled noise and source covariance from nave = 1 to nave = 1
    Created the regularized inverter
    The projection vectors do not apply to these channels.
    Created the whitener using a noise covariance matrix with rank 204 (0 small eigenvalues omitted)
    Computing noise-normalization factors (dSPM)...
[done]
Applying inverse operator to "cov"...
    Picked 204 channels from the data
    Computing inverse...
    Eigenleads need to be weighted ...
    Computing residual...
    Explained  56.5% variance
    dSPM...
    Combining the current components...
[done]

Plot source estimates

DICS:

brain_dics = stc_dics.plot(
    hemi='rh', subjects_dir=subjects_dir, subject=subject,
    time_label='DICS source power in the 12-30 Hz frequency band')
plot evoked ers source power

Out:

Using control points [1.44000791 1.56456517 3.08508281]

LCMV:

brain_lcmv = stc_lcmv.plot(
    hemi='rh', subjects_dir=subjects_dir, subject=subject,
    time_label='LCMV source power in the 12-30 Hz frequency band')
plot evoked ers source power

Out:

Using control points [1.37148708 1.4420963  1.93135208]

dSPM:

brain_dspm = stc_dspm.plot(
    hemi='rh', subjects_dir=subjects_dir, subject=subject,
    time_label='dSPM source power in the 12-30 Hz frequency band')
plot evoked ers source power

Out:

Using control points [1.2052411  1.22600046 1.37652429]

Total running time of the script: ( 0 minutes 37.041 seconds)

Estimated memory usage: 446 MB

Gallery generated by Sphinx-Gallery