1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
__all__ = [
"Brain",
"ClickableImage",
"EvokedField",
"Figure3D",
"_RAW_CLIP_DEF",
"_get_plot_ch_type",
"_get_presser",
"_plot_sources",
"_scraper",
"add_background_image",
"adjust_axes",
"backends",
"centers_to_edges",
"circular_layout",
"close_3d_figure",
"close_all_3d_figures",
"compare_fiff",
"concatenate_images",
"create_3d_figure",
"eyetracking",
"get_3d_backend",
"get_brain_class",
"get_browser_backend",
"iter_topography",
"link_brains",
"mne_analyze_colormap",
"plot_alignment",
"plot_arrowmap",
"plot_bem",
"plot_brain_colorbar",
"plot_bridged_electrodes",
"plot_ch_adjacency",
"plot_channel_labels_circle",
"plot_chpi_snr",
"plot_compare_evokeds",
"plot_cov",
"plot_csd",
"plot_dipole_amplitudes",
"plot_dipole_locations",
"plot_drop_log",
"plot_epochs",
"plot_epochs_image",
"plot_epochs_psd",
"plot_epochs_psd_topomap",
"plot_events",
"plot_evoked",
"plot_evoked_field",
"plot_evoked_image",
"plot_evoked_joint",
"plot_evoked_topo",
"plot_evoked_topomap",
"plot_evoked_white",
"plot_filter",
"plot_head_positions",
"plot_ica_components",
"plot_ica_overlay",
"plot_ica_properties",
"plot_ica_scores",
"plot_ica_sources",
"plot_ideal_filter",
"plot_layout",
"plot_montage",
"plot_projs_joint",
"plot_projs_topomap",
"plot_raw",
"plot_raw_psd",
"plot_raw_psd_topo",
"plot_regression_weights",
"plot_sensors",
"plot_snr_estimate",
"plot_source_estimates",
"plot_source_spectrogram",
"plot_sparse_source_estimates",
"plot_tfr_topomap",
"plot_topo_image_epochs",
"plot_topomap",
"plot_vector_source_estimates",
"plot_volume_source_estimates",
"set_3d_backend",
"set_3d_options",
"set_3d_title",
"set_3d_view",
"set_browser_backend",
"snapshot_brain_montage",
"ui_events",
"use_3d_backend",
"use_browser_backend",
]
from . import _scraper, backends, eyetracking, ui_events
from ._3d import (
link_brains,
plot_alignment,
plot_brain_colorbar,
plot_dipole_locations,
plot_evoked_field,
plot_head_positions,
plot_source_estimates,
plot_sparse_source_estimates,
plot_vector_source_estimates,
plot_volume_source_estimates,
set_3d_options,
snapshot_brain_montage,
)
from ._brain import Brain
from ._figure import get_browser_backend, set_browser_backend, use_browser_backend
from ._proj import plot_projs_joint
from .backends._abstract import Figure3D
from .backends.renderer import (
close_3d_figure,
close_all_3d_figures,
create_3d_figure,
get_3d_backend,
get_brain_class,
set_3d_backend,
set_3d_title,
set_3d_view,
use_3d_backend,
)
from .circle import circular_layout, plot_channel_labels_circle
from .epochs import plot_drop_log, plot_epochs, plot_epochs_image, plot_epochs_psd
from .evoked import (
plot_compare_evokeds,
plot_evoked,
plot_evoked_image,
plot_evoked_joint,
plot_evoked_topo,
plot_evoked_white,
plot_snr_estimate,
)
from .evoked_field import EvokedField
from .ica import (
_plot_sources,
plot_ica_overlay,
plot_ica_properties,
plot_ica_scores,
plot_ica_sources,
)
from .misc import (
_get_presser,
adjust_axes,
plot_bem,
plot_chpi_snr,
plot_cov,
plot_csd,
plot_dipole_amplitudes,
plot_events,
plot_filter,
plot_ideal_filter,
plot_source_spectrogram,
)
from .montage import plot_montage
from .raw import _RAW_CLIP_DEF, plot_raw, plot_raw_psd, plot_raw_psd_topo
from .topo import iter_topography, plot_topo_image_epochs
from .topomap import (
plot_arrowmap,
plot_bridged_electrodes,
plot_ch_adjacency,
plot_epochs_psd_topomap,
plot_evoked_topomap,
plot_ica_components,
plot_layout,
plot_projs_topomap,
plot_regression_weights,
plot_tfr_topomap,
plot_topomap,
)
from .utils import (
ClickableImage,
_get_plot_ch_type,
add_background_image,
centers_to_edges,
compare_fiff,
concatenate_images,
mne_analyze_colormap,
plot_sensors,
)
|