File: __init__.pyi

package info (click to toggle)
python-mne 1.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 131,492 kB
  • sloc: python: 213,302; javascript: 12,910; sh: 447; makefile: 144
file content (91 lines) | stat: -rw-r--r-- 2,517 bytes parent folder | download
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
__all__ = [
    "EOGRegression",
    "ICA",
    "Xdawn",
    "annotate_amplitude",
    "annotate_break",
    "annotate_movement",
    "annotate_muscle_zscore",
    "annotate_nan",
    "compute_average_dev_head_t",
    "compute_bridged_electrodes",
    "compute_current_source_density",
    "compute_fine_calibration",
    "compute_maxwell_basis",
    "compute_proj_ecg",
    "compute_proj_eog",
    "compute_proj_hfc",
    "corrmap",
    "cortical_signal_suppression",
    "create_ecg_epochs",
    "create_eog_epochs",
    "equalize_bads",
    "eyetracking",
    "find_bad_channels_lof",
    "find_bad_channels_maxwell",
    "find_ecg_events",
    "find_eog_events",
    "fix_stim_artifact",
    "get_score_funcs",
    "ica_find_ecg_events",
    "ica_find_eog_events",
    "ieeg",
    "infomax",
    "interpolate_bridged_electrodes",
    "maxwell_filter",
    "maxwell_filter_prepare_emptyroom",
    "nirs",
    "oversampled_temporal_projection",
    "peak_finder",
    "read_eog_regression",
    "read_fine_calibration",
    "read_ica",
    "read_ica_eeglab",
    "realign_raw",
    "regress_artifact",
    "write_fine_calibration",
]
from . import eyetracking, ieeg, nirs
from ._annotate_amplitude import annotate_amplitude
from ._annotate_nan import annotate_nan
from ._csd import compute_bridged_electrodes, compute_current_source_density
from ._css import cortical_signal_suppression
from ._fine_cal import (
    compute_fine_calibration,
    read_fine_calibration,
    write_fine_calibration,
)
from ._lof import find_bad_channels_lof
from ._peak_finder import peak_finder
from ._regress import EOGRegression, read_eog_regression, regress_artifact
from .artifact_detection import (
    annotate_break,
    annotate_movement,
    annotate_muscle_zscore,
    compute_average_dev_head_t,
)
from .ecg import create_ecg_epochs, find_ecg_events
from .eog import create_eog_epochs, find_eog_events
from .hfc import compute_proj_hfc
from .ica import (
    ICA,
    corrmap,
    get_score_funcs,
    ica_find_ecg_events,
    ica_find_eog_events,
    read_ica,
    read_ica_eeglab,
)
from .infomax_ import infomax
from .interpolate import equalize_bads, interpolate_bridged_electrodes
from .maxwell import (
    compute_maxwell_basis,
    find_bad_channels_maxwell,
    maxwell_filter,
    maxwell_filter_prepare_emptyroom,
)
from .otp import oversampled_temporal_projection
from .realign import realign_raw
from .ssp import compute_proj_ecg, compute_proj_eog
from .stim import fix_stim_artifact
from .xdawn import Xdawn