MCPcopy Index your code
hub / github.com/mne-tools/mne-python / plot_scores

Method plot_scores

mne/preprocessing/ica.py:2619–2640  ·  view source on GitHub ↗
(
        self,
        scores,
        exclude=None,
        labels=None,
        axhline=None,
        title="ICA component scores",
        figsize=None,
        n_cols=None,
        show=True,
    )

Source from the content-addressed store, hash-verified

2617
2618 @copy_function_doc_to_method_doc(plot_ica_scores)
2619 def plot_scores(
2620 self,
2621 scores,
2622 exclude=None,
2623 labels=None,
2624 axhline=None,
2625 title="ICA component scores",
2626 figsize=None,
2627 n_cols=None,
2628 show=True,
2629 ):
2630 return plot_ica_scores(
2631 ica=self,
2632 scores=scores,
2633 exclude=exclude,
2634 labels=labels,
2635 axhline=axhline,
2636 title=title,
2637 figsize=figsize,
2638 n_cols=n_cols,
2639 show=show,
2640 )
2641
2642 @copy_function_doc_to_method_doc(plot_ica_overlay)
2643 def plot_overlay(

Callers 6

test_plot_ica_scoresFunction · 0.95
muscle_ica.pyFile · 0.80

Calls 1

plot_ica_scoresFunction · 0.85

Tested by 1

test_plot_ica_scoresFunction · 0.76