Parameters: |
- ica : instance of mne.preprocessing.ICA
The ICA object.
- scores : array_like of float, shape (n ica components) | list of arrays
Scores based on arbitrary metric to characterize ICA components.
- exclude : array_like of int
The components marked for exclusion. If None (default), ICA.exclude
will be used.
- labels : str | list | ‘ecg’ | ‘eog’ | None
The labels to consider for the axes tests. Defaults to None.
If list, should match the outer shape of scores.
If ‘ecg’ or ‘eog’, the labels_ attributes will be looked up.
Note that ‘/’ is used internally for sublabels specifying ECG and
EOG channels.
- axhline : float
Draw horizontal line to e.g. visualize rejection threshold.
- title : str
The figure title.
- figsize : tuple of int | None
The figure size. If None it gets set automatically.
- show : bool
Show figure if True.
|