Method
plot_scores
(
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( |