(
self,
picks=None,
exclude="bads",
unit=True,
show=True,
ylim=None,
xlim="tight",
proj=False,
hline=None,
units=None,
scalings=None,
titles=None,
axes=None,
gfp=False,
window_title=None,
spatial_colors="auto",
zorder="unsorted",
selectable=True,
noise_cov=None,
time_unit="s",
sphere=None,
*,
highlight=None,
verbose=None,
)
| 491 | |
| 492 | @copy_function_doc_to_method_doc(plot_evoked) |
| 493 | def plot( |
| 494 | self, |
| 495 | picks=None, |
| 496 | exclude="bads", |
| 497 | unit=True, |
| 498 | show=True, |
| 499 | ylim=None, |
| 500 | xlim="tight", |
| 501 | proj=False, |
| 502 | hline=None, |
| 503 | units=None, |
| 504 | scalings=None, |
| 505 | titles=None, |
| 506 | axes=None, |
| 507 | gfp=False, |
| 508 | window_title=None, |
| 509 | spatial_colors="auto", |
| 510 | zorder="unsorted", |
| 511 | selectable=True, |
| 512 | noise_cov=None, |
| 513 | time_unit="s", |
| 514 | sphere=None, |
| 515 | *, |
| 516 | highlight=None, |
| 517 | verbose=None, |
| 518 | ): |
| 519 | return plot_evoked( |
| 520 | self, |
| 521 | picks=picks, |
| 522 | exclude=exclude, |
| 523 | unit=unit, |
| 524 | show=show, |
| 525 | ylim=ylim, |
| 526 | proj=proj, |
| 527 | xlim=xlim, |
| 528 | hline=hline, |
| 529 | units=units, |
| 530 | scalings=scalings, |
| 531 | titles=titles, |
| 532 | axes=axes, |
| 533 | gfp=gfp, |
| 534 | window_title=window_title, |
| 535 | spatial_colors=spatial_colors, |
| 536 | zorder=zorder, |
| 537 | selectable=selectable, |
| 538 | noise_cov=noise_cov, |
| 539 | time_unit=time_unit, |
| 540 | sphere=sphere, |
| 541 | highlight=highlight, |
| 542 | verbose=verbose, |
| 543 | ) |
| 544 | |
| 545 | @copy_function_doc_to_method_doc(plot_evoked_image) |
| 546 | def plot_image( |
no test coverage detected