mne.viz.plot_ica_sources#
- mne.viz.plot_ica_sources(ica, inst, picks=None, start=None, stop=None, title=None, show=True, block=False, show_first_samp=False, show_scrollbars=True, time_format='float', precompute=None, use_opengl=None, *, theme=None, overview_mode=None)[source]#
- Plot estimated latent sources given the unmixing matrix. - Typical usecases: - plot evolution of latent sources over time based on (Raw input) 
- plot latent source around event related time windows (Epochs input) 
- plot time-locking in ICA space (Evoked input) 
 - Parameters
- icainstance of mne.preprocessing.ICA
- The ICA solution. 
- instinstance of Raw,EpochsorEvoked
- The object to plot the sources from. 
- picksint|listofint|slice|None
- Indices of the independent components (ICs) to visualize. If an integer, represents the index of the IC to pick. Multiple ICs can be selected using a list of int or a slice. The indices are 0-indexed, so - picks=1will pick the second IC:- ICA001.- Nonewill pick all independent components in the order fitted.
- start, stopfloat|int|None
- If - instis a- Rawor an- Evokedobject, the first and last time point (in seconds) of the data to plot. If- instis a- Rawobject,- start=Noneand- stop=Nonewill be translated into- start=0.and- stop=3., respectively. For- Evoked,- Nonerefers to the beginning and end of the evoked signal. If- instis an- Epochsobject, specifies the index of the first and last epoch to show.
- titlestr|None
- The window title. If None a default is provided. 
- showbool
- Show figure if True. 
- blockbool
- Whether to halt program execution until the figure is closed. Useful for interactive selection of components in raw and epoch plotter. For evoked, this parameter has no effect. Defaults to False. 
- show_first_sampbool
- If True, show time axis relative to the - raw.first_samp.
- show_scrollbarsbool
- Whether to show scrollbars when the plot is initialized. Can be toggled after initialization by pressing z (“zen mode”) while the plot window is focused. Default is - True.- New in v0.19.0. 
- time_format‘float’ | ‘clock’
- Style of time labels on the horizontal axis. If - 'float', labels will be number of seconds from the start of the recording. If- 'clock', labels will show “clock time” (hours/minutes/seconds) inferred from- raw.info['meas_date']. Default is- 'float'.- New in v0.24. 
- precomputebool|str
- Whether to load all data (not just the visible portion) into RAM and apply preprocessing (e.g., projectors) to the full data array in a separate processor thread, instead of window-by-window during scrolling. The default None uses the - MNE_BROWSER_PRECOMPUTEvariable, which defaults to- 'auto'.- 'auto'compares available RAM space to the expected size of the precomputed data, and precomputes only if enough RAM is available. This is only used with the Qt backend.- New in v0.24. - Changed in version 1.0: Support for the MNE_BROWSER_PRECOMPUTE config variable. 
- use_openglbool|None
- Whether to use OpenGL when rendering the plot (requires - pyopengl). May increase performance, but effect is dependent on system CPU and graphics hardware. Only works if using the Qt backend. Default is None, which will use False unless the user configuration variable- MNE_BROWSER_USE_OPENGLis set to- 'true', see- mne.set_config().- New in v0.24. 
- themestr| path-like
- Can be “auto”, “light”, or “dark” or a path-like to a custom stylesheet. For Dark-Mode and automatic Dark-Mode-Detection, - qdarkstyleand darkdetect, respectively, are required. If None (default), the config option MNE_BROWSER_THEME will be used, defaulting to “auto” if it’s not found. Only supported by the- 'qt'backend.- New in v1.0. 
- overview_modestr|None
- Can be “channels”, “empty”, or “hidden” to set the overview bar mode for the - 'qt'backend. If None (default), the config option- MNE_BROWSER_OVERVIEW_MODEwill be used, defaulting to “channels” if it’s not found.- New in v1.1. 
 
- icainstance of 
- Returns
- figmatplotlib.figure.Figure| mne_qt_browser.figure.MNEQtBrowser
- Browser instance. 
 
- fig
 - Notes - For raw and epoch instances, it is possible to select components for exclusion by clicking on the line. The selected components are added to - ica.excludeon close.- MNE-Python provides two different backends for browsing plots (i.e., - raw.plot(),- epochs.plot(), and- ica.plot_sources()). One is based on- matplotlib, and the other is based on PyQtGraph. You can set the backend temporarily with the context manager- mne.viz.use_browser_backend(), you can set it for the duration of a Python session using- mne.viz.set_browser_backend(), and you can set the default for your computer via- mne.set_config('MNE_BROWSER_BACKEND', 'matplotlib')(or- 'qt').- Note - For the PyQtGraph backend to run in IPython with - block=Falseyou must run the magic command- %gui qt5first.- Note - To report issues with the PyQtGraph backend, please use the issues of - mne-qt-browser.- New in v0.10.0.