MCPcopy Index your code
hub / github.com/mne-tools/mne-python / plot_3d

Method plot_3d

mne/source_estimate.py:2760–2826  ·  view source on GitHub ↗
(
        self,
        subject=None,
        hemi="both",
        colormap="hot",
        time_label="auto",
        smoothing_steps=10,
        transparent=True,
        brain_alpha=0.4,
        overlay_alpha=None,
        vector_alpha=1.0,
        scale_factor=None,
        time_viewer="auto",
        *,
        subjects_dir=None,
        figure=None,
        views="axial",
        colorbar=True,
        clim="auto",
        cortex="classic",
        size=800,
        background="black",
        foreground=None,
        initial_time=None,
        time_unit="s",
        title=None,
        show_traces="auto",
        src=None,
        volume_options=1.0,
        view_layout="vertical",
        add_data_kwargs=None,
        brain_kwargs=None,
        verbose=None,
    )

Source from the content-addressed store, hash-verified

2758 # defaults differ: hemi='both', views='axial'
2759 @copy_function_doc_to_method_doc(plot_vector_source_estimates)
2760 def plot_3d(
2761 self,
2762 subject=None,
2763 hemi="both",
2764 colormap="hot",
2765 time_label="auto",
2766 smoothing_steps=10,
2767 transparent=True,
2768 brain_alpha=0.4,
2769 overlay_alpha=None,
2770 vector_alpha=1.0,
2771 scale_factor=None,
2772 time_viewer="auto",
2773 *,
2774 subjects_dir=None,
2775 figure=None,
2776 views="axial",
2777 colorbar=True,
2778 clim="auto",
2779 cortex="classic",
2780 size=800,
2781 background="black",
2782 foreground=None,
2783 initial_time=None,
2784 time_unit="s",
2785 title=None,
2786 show_traces="auto",
2787 src=None,
2788 volume_options=1.0,
2789 view_layout="vertical",
2790 add_data_kwargs=None,
2791 brain_kwargs=None,
2792 verbose=None,
2793 ):
2794 return _BaseVectorSourceEstimate.plot(
2795 self,
2796 subject=subject,
2797 hemi=hemi,
2798 colormap=colormap,
2799 time_label=time_label,
2800 smoothing_steps=smoothing_steps,
2801 transparent=transparent,
2802 brain_alpha=brain_alpha,
2803 overlay_alpha=overlay_alpha,
2804 vector_alpha=vector_alpha,
2805 scale_factor=scale_factor,
2806 time_viewer=time_viewer,
2807 subjects_dir=subjects_dir,
2808 figure=figure,
2809 views=views,
2810 colorbar=colorbar,
2811 clim=clim,
2812 cortex=cortex,
2813 size=size,
2814 background=background,
2815 foreground=foreground,
2816 initial_time=initial_time,
2817 time_unit=time_unit,

Callers

nothing calls this directly

Calls 1

plotMethod · 0.45

Tested by

no test coverage detected