(
self,
subject=None,
surface="inflated",
hemi="lh",
colormap="auto",
time_label="auto",
smoothing_steps=10,
transparent=True,
alpha=1.0,
time_viewer="auto",
*,
subjects_dir=None,
figure=None,
views="auto",
colorbar=True,
clim="auto",
cortex="classic",
size=800,
background="black",
foreground=None,
initial_time=None,
time_unit="s",
backend="auto",
spacing="oct6",
title=None,
show_traces="auto",
src=None,
volume_options=1.0,
view_layout="vertical",
add_data_kwargs=None,
brain_kwargs=None,
verbose=None,
)
| 754 | |
| 755 | @copy_function_doc_to_method_doc(plot_source_estimates) |
| 756 | def plot( |
| 757 | self, |
| 758 | subject=None, |
| 759 | surface="inflated", |
| 760 | hemi="lh", |
| 761 | colormap="auto", |
| 762 | time_label="auto", |
| 763 | smoothing_steps=10, |
| 764 | transparent=True, |
| 765 | alpha=1.0, |
| 766 | time_viewer="auto", |
| 767 | *, |
| 768 | subjects_dir=None, |
| 769 | figure=None, |
| 770 | views="auto", |
| 771 | colorbar=True, |
| 772 | clim="auto", |
| 773 | cortex="classic", |
| 774 | size=800, |
| 775 | background="black", |
| 776 | foreground=None, |
| 777 | initial_time=None, |
| 778 | time_unit="s", |
| 779 | backend="auto", |
| 780 | spacing="oct6", |
| 781 | title=None, |
| 782 | show_traces="auto", |
| 783 | src=None, |
| 784 | volume_options=1.0, |
| 785 | view_layout="vertical", |
| 786 | add_data_kwargs=None, |
| 787 | brain_kwargs=None, |
| 788 | verbose=None, |
| 789 | ): |
| 790 | brain = plot_source_estimates( |
| 791 | self, |
| 792 | subject, |
| 793 | surface=surface, |
| 794 | hemi=hemi, |
| 795 | colormap=colormap, |
| 796 | time_label=time_label, |
| 797 | smoothing_steps=smoothing_steps, |
| 798 | transparent=transparent, |
| 799 | alpha=alpha, |
| 800 | time_viewer=time_viewer, |
| 801 | subjects_dir=subjects_dir, |
| 802 | figure=figure, |
| 803 | views=views, |
| 804 | colorbar=colorbar, |
| 805 | clim=clim, |
| 806 | cortex=cortex, |
| 807 | size=size, |
| 808 | background=background, |
| 809 | foreground=foreground, |
| 810 | initial_time=initial_time, |
| 811 | time_unit=time_unit, |
| 812 | backend=backend, |
| 813 | spacing=spacing, |
no test coverage detected