You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, conpy only supports connectivity between sensors/sources. A common use case is to compute coherence between the sensors/sources and an external sensor, for example an EMG sensor.
The API could look like this:
# Include the EMG sensors in the CSD matrix computations.# (By default, only MEG and EEG is included)csd_picks=mne.pick_types(epochs, meg=True, emg=True)
csd=mne.time_frequency.csd_epochs(epochs, picks=picks)
# Compute one-to-all connectivity pairs between the EMG sensor and all source verticespairs=conpy.sensor_to_source_pairs('EMG001', src)
# Specify during connectivity computations that the origin is not on the cortex,# but the targets arecon=conpy.dics_connectivity(pairs, fwd, csd,
sources_on_cortex=False, targets_on_cortex=True)
The text was updated successfully, but these errors were encountered:
At the moment, conpy only supports connectivity between sensors/sources. A common use case is to compute coherence between the sensors/sources and an external sensor, for example an EMG sensor.
The API could look like this:
The text was updated successfully, but these errors were encountered: