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

Method plot_sources

mne/preprocessing/ica.py:2576–2616  ·  view source on GitHub ↗
(
        self,
        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,
        *,
        annotation_regex=".*",
        psd_args=None,
        theme=None,
        overview_mode=None,
        splash=True,
    )

Source from the content-addressed store, hash-verified

2574
2575 @copy_function_doc_to_method_doc(plot_ica_sources)
2576 def plot_sources(
2577 self,
2578 inst,
2579 picks=None,
2580 start=None,
2581 stop=None,
2582 title=None,
2583 show=True,
2584 block=False,
2585 show_first_samp=False,
2586 show_scrollbars=True,
2587 time_format="float",
2588 precompute=None,
2589 use_opengl=None,
2590 *,
2591 annotation_regex=".*",
2592 psd_args=None,
2593 theme=None,
2594 overview_mode=None,
2595 splash=True,
2596 ):
2597 return plot_ica_sources(
2598 self,
2599 inst=inst,
2600 picks=picks,
2601 start=start,
2602 stop=stop,
2603 title=title,
2604 show=show,
2605 block=block,
2606 annotation_regex=annotation_regex,
2607 psd_args=psd_args,
2608 show_first_samp=show_first_samp,
2609 show_scrollbars=show_scrollbars,
2610 time_format=time_format,
2611 precompute=precompute,
2612 use_opengl=use_opengl,
2613 theme=theme,
2614 overview_mode=overview_mode,
2615 splash=splash,
2616 )
2617
2618 @copy_function_doc_to_method_doc(plot_ica_scores)
2619 def plot_scores(

Callers 6

test_plot_ica_sourcesFunction · 0.95
muscle_ica.pyFile · 0.80
_add_ica_sourcesMethod · 0.80

Calls 1

plot_ica_sourcesFunction · 0.85

Tested by 2

test_plot_ica_sourcesFunction · 0.76