Compute SSP (signal-space projection) vectors on evoked data.
This function aims to find those SSP vectors that
will project out the n most prominent signals from the data for each
specified sensor type. Consequently, if the provided input data contains high
levels of noise, the produced SSP vectors can then be used to eliminate that
noise from the data.
EvokedThe Evoked obtained by averaging the artifact.
intNumber of vectors for gradiometers.
intNumber of vectors for magnetometers.
intNumber of vectors for EEG channels.
str | NoneThe description prefix to use. If None, one will be created based on tmin and tmax.
New in version 0.17.
strCan be ‘separate’ (default) or ‘combined’ to compute projectors
for magnetometers and gradiometers separately or jointly.
If ‘combined’, n_mag == n_grad is required and the number of
projectors computed for MEG will be n_mag.
New in version 0.18.
str | int | NoneControl verbosity of the logging output. If None, use the default
verbosity level. See the logging documentation and
mne.verbose() for details. Should only be passed as a keyword
argument.
listList of projection vectors.
See also
mne.compute_proj_evoked#