MCPcopy
hub / github.com/mne-tools/mne-python / _pick_data_channels

Function _pick_data_channels

mne/_fiff/pick.py:1182–1188  ·  view source on GitHub ↗

Pick only data channels.

(info, exclude="bads", with_ref_meg=True, with_aux=False)

Source from the content-addressed store, hash-verified

1180
1181
1182def _pick_data_channels(info, exclude="bads", with_ref_meg=True, with_aux=False):
1183 """Pick only data channels."""
1184 kwargs = _PICK_TYPES_DATA_DICT
1185 if with_aux:
1186 kwargs = kwargs.copy()
1187 kwargs.update(eog=True, ecg=True, emg=True, bio=True)
1188 return pick_types(info, ref_meg=with_ref_meg, exclude=exclude, **kwargs)
1189
1190
1191def _pick_data_or_ica(info, exclude=()):

Callers 15

test_otp_realFunction · 0.90
_detrend_offset_decimMethod · 0.85
subtract_evokedMethod · 0.85
_detrend_picksMethod · 0.85
compute_raw_covarianceFunction · 0.85
fitMethod · 0.85
applyMethod · 0.85
_pick_data_or_icaFunction · 0.85
_picks_str_to_idxFunction · 0.85
fitMethod · 0.85
_divide_to_regionsFunction · 0.85
_handle_decimFunction · 0.85

Calls 3

pick_typesFunction · 0.85
copyMethod · 0.45
updateMethod · 0.45

Tested by 1

test_otp_realFunction · 0.72