eelbrain.pipeline.RawApplyICA
- class eelbrain.pipeline.RawApplyICA(source, ica, cache=False)
Apply ICA estimated in a
RawICA
pipe- Parameters:
See also
Notes
This pipe inherits bad channels from the ICA.
Examples
Estimate ICA components with 1-40 Hz band-pass filter and apply the ICA to data that is high pass filtered at 0.1 Hz:
class Experiment(MneExperiment): raw = { '1-40': RawFilter('raw', 1, 40), 'ica': RawICA('1-40', 'session', 'extended-infomax', n_components=0.99), '0.1-40': RawFilter('raw', 0.1, 40), '0.1-40-ica': RawApplyICA('0.1-40', 'ica'), }