Method
plot_components
(
self,
picks=None,
ch_type=None,
*,
inst=None,
plot_std=True,
reject="auto",
sensors=True,
show_names=False,
contours=6,
outlines="head",
sphere=None,
image_interp=_INTERPOLATION_DEFAULT,
extrapolate=_EXTRAPOLATE_DEFAULT,
border=_BORDER_DEFAULT,
res=64,
size=1,
cmap="RdBu_r",
vlim=(None, None),
cnorm=None,
colorbar=False,
cbar_fmt="%3.2f",
axes=None,
title=None,
nrows="auto",
ncols="auto",
show=True,
image_args=None,
psd_args=None,
verbose=None,
)
Source from the content-addressed store, hash-verified
| 2470 | |
| 2471 | @copy_function_doc_to_method_doc(plot_ica_components) |
| 2472 | def plot_components( |
| 2473 | self, |
| 2474 | picks=None, |
| 2475 | ch_type=None, |
| 2476 | *, |
| 2477 | inst=None, |
| 2478 | plot_std=True, |
| 2479 | reject="auto", |
| 2480 | sensors=True, |
| 2481 | show_names=False, |
| 2482 | contours=6, |
| 2483 | outlines="head", |
| 2484 | sphere=None, |
| 2485 | image_interp=_INTERPOLATION_DEFAULT, |
| 2486 | extrapolate=_EXTRAPOLATE_DEFAULT, |
| 2487 | border=_BORDER_DEFAULT, |
| 2488 | res=64, |
| 2489 | size=1, |
| 2490 | cmap="RdBu_r", |
| 2491 | vlim=(None, None), |
| 2492 | cnorm=None, |
| 2493 | colorbar=False, |
| 2494 | cbar_fmt="%3.2f", |
| 2495 | axes=None, |
| 2496 | title=None, |
| 2497 | nrows="auto", |
| 2498 | ncols="auto", |
| 2499 | show=True, |
| 2500 | image_args=None, |
| 2501 | psd_args=None, |
| 2502 | verbose=None, |
| 2503 | ): |
| 2504 | return plot_ica_components( |
| 2505 | self, |
| 2506 | picks=picks, |
| 2507 | ch_type=ch_type, |
| 2508 | inst=inst, |
| 2509 | plot_std=plot_std, |
| 2510 | reject=reject, |
| 2511 | sensors=sensors, |
| 2512 | show_names=show_names, |
| 2513 | contours=contours, |
| 2514 | outlines=outlines, |
| 2515 | sphere=sphere, |
| 2516 | image_interp=image_interp, |
| 2517 | extrapolate=extrapolate, |
| 2518 | border=border, |
| 2519 | res=res, |
| 2520 | size=size, |
| 2521 | cmap=cmap, |
| 2522 | vlim=vlim, |
| 2523 | cnorm=cnorm, |
| 2524 | colorbar=colorbar, |
| 2525 | cbar_fmt=cbar_fmt, |
| 2526 | axes=axes, |
| 2527 | title=title, |
| 2528 | nrows=nrows, |
| 2529 | ncols=ncols, |