(
self,
times="auto",
*,
average=None,
ch_type=None,
scalings=None,
proj=False,
sensors=True,
show_names=False,
mask=None,
mask_params=None,
contours=6,
outlines="head",
sphere=None,
image_interp=_INTERPOLATION_DEFAULT,
extrapolate=_EXTRAPOLATE_DEFAULT,
border=_BORDER_DEFAULT,
res=64,
size=1,
cmap=None,
vlim=(None, None),
cnorm=None,
colorbar=True,
cbar_fmt="%3.1f",
units=None,
axes=None,
time_unit="s",
time_format=None,
nrows=1,
ncols="auto",
show=True,
)
| 644 | |
| 645 | @copy_function_doc_to_method_doc(plot_evoked_topomap) |
| 646 | def plot_topomap( |
| 647 | self, |
| 648 | times="auto", |
| 649 | *, |
| 650 | average=None, |
| 651 | ch_type=None, |
| 652 | scalings=None, |
| 653 | proj=False, |
| 654 | sensors=True, |
| 655 | show_names=False, |
| 656 | mask=None, |
| 657 | mask_params=None, |
| 658 | contours=6, |
| 659 | outlines="head", |
| 660 | sphere=None, |
| 661 | image_interp=_INTERPOLATION_DEFAULT, |
| 662 | extrapolate=_EXTRAPOLATE_DEFAULT, |
| 663 | border=_BORDER_DEFAULT, |
| 664 | res=64, |
| 665 | size=1, |
| 666 | cmap=None, |
| 667 | vlim=(None, None), |
| 668 | cnorm=None, |
| 669 | colorbar=True, |
| 670 | cbar_fmt="%3.1f", |
| 671 | units=None, |
| 672 | axes=None, |
| 673 | time_unit="s", |
| 674 | time_format=None, |
| 675 | nrows=1, |
| 676 | ncols="auto", |
| 677 | show=True, |
| 678 | ): |
| 679 | return plot_evoked_topomap( |
| 680 | self, |
| 681 | times=times, |
| 682 | ch_type=ch_type, |
| 683 | vlim=vlim, |
| 684 | cmap=cmap, |
| 685 | cnorm=cnorm, |
| 686 | sensors=sensors, |
| 687 | colorbar=colorbar, |
| 688 | scalings=scalings, |
| 689 | units=units, |
| 690 | res=res, |
| 691 | size=size, |
| 692 | cbar_fmt=cbar_fmt, |
| 693 | time_unit=time_unit, |
| 694 | time_format=time_format, |
| 695 | proj=proj, |
| 696 | show=show, |
| 697 | show_names=show_names, |
| 698 | mask=mask, |
| 699 | mask_params=mask_params, |
| 700 | outlines=outlines, |
| 701 | contours=contours, |
| 702 | image_interp=image_interp, |
| 703 | average=average, |
no test coverage detected