(
self,
times="peaks",
title="",
picks=None,
exclude="bads",
show=True,
ts_args=None,
topomap_args=None,
)
| 771 | |
| 772 | @copy_function_doc_to_method_doc(plot_evoked_joint) |
| 773 | def plot_joint( |
| 774 | self, |
| 775 | times="peaks", |
| 776 | title="", |
| 777 | picks=None, |
| 778 | exclude="bads", |
| 779 | show=True, |
| 780 | ts_args=None, |
| 781 | topomap_args=None, |
| 782 | ): |
| 783 | return plot_evoked_joint( |
| 784 | self, |
| 785 | times=times, |
| 786 | title=title, |
| 787 | picks=picks, |
| 788 | exclude=exclude, |
| 789 | show=show, |
| 790 | ts_args=ts_args, |
| 791 | topomap_args=topomap_args, |
| 792 | ) |
| 793 | |
| 794 | @fill_doc |
| 795 | def animate_topomap( |
no test coverage detected