Method
plot_properties
(
self,
inst,
picks=None,
axes=None,
dB=True,
plot_std=True,
log_scale=False,
topomap_args=None,
image_args=None,
psd_args=None,
figsize=None,
show=True,
reject="auto",
reject_by_annotation=True,
*,
estimate="power",
verbose=None,
)
Source from the content-addressed store, hash-verified
| 2535 | |
| 2536 | @copy_function_doc_to_method_doc(plot_ica_properties) |
| 2537 | def plot_properties( |
| 2538 | self, |
| 2539 | inst, |
| 2540 | picks=None, |
| 2541 | axes=None, |
| 2542 | dB=True, |
| 2543 | plot_std=True, |
| 2544 | log_scale=False, |
| 2545 | topomap_args=None, |
| 2546 | image_args=None, |
| 2547 | psd_args=None, |
| 2548 | figsize=None, |
| 2549 | show=True, |
| 2550 | reject="auto", |
| 2551 | reject_by_annotation=True, |
| 2552 | *, |
| 2553 | estimate="power", |
| 2554 | verbose=None, |
| 2555 | ): |
| 2556 | return plot_ica_properties( |
| 2557 | self, |
| 2558 | inst, |
| 2559 | picks=picks, |
| 2560 | axes=axes, |
| 2561 | dB=dB, |
| 2562 | plot_std=plot_std, |
| 2563 | log_scale=log_scale, |
| 2564 | topomap_args=topomap_args, |
| 2565 | image_args=image_args, |
| 2566 | psd_args=psd_args, |
| 2567 | figsize=figsize, |
| 2568 | show=show, |
| 2569 | reject=reject, |
| 2570 | reject_by_annotation=reject_by_annotation, |
| 2571 | estimate=estimate, |
| 2572 | verbose=verbose, |
| 2573 | ) |
| 2574 | |
| 2575 | @copy_function_doc_to_method_doc(plot_ica_sources) |
| 2576 | def plot_sources( |