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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028
|
:orphan:
.. _api_reference:
====================
Python API Reference
====================
This is the reference for classes (``CamelCase`` names) and functions
(``underscore_case`` names) of MNE-Python, grouped thematically by analysis
stage. Functions and classes that are not
below a module heading are found in the ``mne`` namespace.
MNE-Python also provides multiple command-line scripts that can be called
directly from a terminal, see :ref:`python_commands`.
.. contents::
:local:
:depth: 2
:py:mod:`mne`:
.. automodule:: mne
:no-members:
:no-inherited-members:
Most-used classes
=================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
io.Raw
Epochs
Evoked
Info
Reading raw data
================
:py:mod:`mne.io`:
.. currentmodule:: mne.io
.. automodule:: mne.io
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
anonymize_info
read_raw_artemis123
read_raw_bti
read_raw_cnt
read_raw_ctf
read_raw_curry
read_raw_edf
read_raw_bdf
read_raw_gdf
read_raw_kit
read_raw_nicolet
read_raw_eeglab
read_raw_brainvision
read_raw_egi
read_raw_fif
read_raw_eximia
read_raw_fieldtrip
Base class:
.. autosummary::
:toctree: generated
BaseRaw
:py:mod:`mne.io.kit`:
.. currentmodule:: mne.io.kit
.. automodule:: mne.io.kit
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
read_mrk
File I/O
========
.. currentmodule:: mne
.. autosummary::
:toctree: generated
decimate_surface
channel_type
channel_indices_by_type
get_head_surf
get_meg_helmet_surf
get_volume_labels_from_aseg
get_volume_labels_from_src
parse_config
read_labels_from_annot
read_bem_solution
read_bem_surfaces
read_cov
read_dipole
read_epochs
read_epochs_kit
read_epochs_eeglab
read_epochs_fieldtrip
read_events
read_evokeds
read_evoked_fieldtrip
read_forward_solution
read_label
read_morph_map
read_proj
read_reject_parameters
read_selection
read_source_estimate
read_source_spaces
read_surface
read_trans
read_tri
write_labels_to_annot
write_bem_solution
write_bem_surfaces
write_cov
write_events
write_evokeds
write_forward_solution
write_label
write_proj
write_source_spaces
write_surface
write_trans
what
io.read_info
io.show_fiff
Base class:
.. autosummary::
:toctree: generated
BaseEpochs
Creating data objects from arrays
=================================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
EvokedArray
EpochsArray
io.RawArray
create_info
Datasets
========
.. currentmodule:: mne.datasets
:py:mod:`mne.datasets`:
.. automodule:: mne.datasets
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
brainstorm.bst_auditory.data_path
brainstorm.bst_resting.data_path
brainstorm.bst_raw.data_path
eegbci.load_data
fetch_aparc_sub_parcellation
fetch_fsaverage
fetch_hcp_mmp_parcellation
hf_sef.data_path
kiloword.data_path
limo.load_data
misc.data_path
mtrf.data_path
multimodal.data_path
opm.data_path
sleep_physionet.age.fetch_data
sleep_physionet.temazepam.fetch_data
sample.data_path
somato.data_path
spm_face.data_path
visual_92_categories.data_path
phantom_4dbti.data_path
Visualization
=============
.. currentmodule:: mne.viz
:py:mod:`mne.viz`:
.. automodule:: mne.viz
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
ClickableImage
add_background_image
compare_fiff
circular_layout
mne_analyze_colormap
plot_bem
plot_brain_colorbar
plot_connectivity_circle
plot_cov
plot_csd
plot_dipole_amplitudes
plot_dipole_locations
plot_drop_log
plot_epochs
plot_events
plot_evoked
plot_evoked_image
plot_evoked_topo
plot_evoked_topomap
plot_evoked_joint
plot_evoked_field
plot_evoked_white
plot_filter
plot_head_positions
plot_ideal_filter
plot_compare_evokeds
plot_ica_sources
plot_ica_components
plot_ica_properties
plot_ica_scores
plot_ica_overlay
plot_epochs_image
plot_layout
plot_montage
plot_projs_topomap
plot_raw
plot_raw_psd
plot_sensors
plot_sensors_connectivity
plot_snr_estimate
plot_source_estimates
plot_volume_source_estimates
plot_vector_source_estimates
plot_sparse_source_estimates
plot_tfr_topomap
plot_topo_image_epochs
plot_topomap
plot_alignment
snapshot_brain_montage
plot_arrowmap
set_3d_backend
get_3d_backend
use_3d_backend
set_3d_view
set_3d_title
create_3d_figure
Preprocessing
=============
Projections:
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
Projection
compute_proj_epochs
compute_proj_evoked
compute_proj_raw
read_proj
write_proj
:py:mod:`mne.channels`:
.. currentmodule:: mne.channels
.. automodule:: mne.channels
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
Layout
DigMontage
fix_mag_coil_types
read_polhemus_fastscan
get_builtin_montages
make_dig_montage
read_dig_polhemus_isotrak
read_dig_captrack
read_dig_egi
read_dig_fif
read_dig_hpts
make_standard_montage
read_custom_montage
compute_dev_head_t
read_layout
find_layout
make_eeg_layout
make_grid_layout
find_ch_connectivity
read_ch_connectivity
equalize_channels
rename_channels
generate_2d_layout
make_1020_channel_selections
:py:mod:`mne.preprocessing`:
.. currentmodule:: mne.preprocessing
.. automodule:: mne.preprocessing
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
ICA
Xdawn
compute_proj_ecg
compute_proj_eog
create_ecg_epochs
create_eog_epochs
find_ecg_events
find_eog_events
fix_stim_artifact
ica_find_ecg_events
ica_find_eog_events
infomax
mark_flat
maxwell_filter
oversampled_temporal_projection
peak_finder
read_ica
run_ica
corrmap
EEG referencing:
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
add_reference_channels
set_bipolar_reference
set_eeg_reference
:py:mod:`mne.filter`:
.. currentmodule:: mne.filter
.. automodule:: mne.filter
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
construct_iir_filter
create_filter
estimate_ringing_samples
filter_data
notch_filter
resample
:py:mod:`mne.chpi`
.. currentmodule:: mne.chpi
.. automodule:: mne.chpi
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
filter_chpi
head_pos_to_trans_rot_t
read_head_pos
write_head_pos
:py:mod:`mne.transforms`
.. currentmodule:: mne.transforms
.. automodule:: mne.transforms
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
Transform
quat_to_rot
rot_to_quat
Events
======
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
Annotations
AcqParserFIF
concatenate_events
find_events
find_stim_steps
make_fixed_length_events
merge_events
parse_config
pick_events
read_annotations
read_events
write_events
concatenate_epochs
events_from_annotations
:py:mod:`mne.event`:
.. automodule:: mne.event
:no-members:
:no-inherited-members:
.. currentmodule:: mne.event
.. autosummary::
:toctree: generated/
define_target_events
shift_time_events
:py:mod:`mne.epochs`:
.. automodule:: mne.epochs
:no-members:
:no-inherited-members:
.. currentmodule:: mne.epochs
.. autosummary::
:toctree: generated/
add_channels_epochs
average_movements
combine_event_ids
equalize_epoch_counts
Sensor Space Data
=================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
combine_evoked
concatenate_raws
equalize_channels
grand_average
pick_channels
pick_channels_cov
pick_channels_forward
pick_channels_regexp
pick_types
pick_types_forward
pick_info
read_epochs
read_reject_parameters
read_selection
rename_channels
Covariance computation
======================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
Covariance
compute_covariance
compute_raw_covariance
cov.compute_whitener
cov.prepare_noise_cov
cov.regularize
compute_rank
make_ad_hoc_cov
read_cov
write_cov
MRI Processing
==============
.. currentmodule:: mne
Step by step instructions for using :func:`gui.coregistration`:
- `Coregistration for subjects with structural MRI
<https://www.slideshare.net/mne-python/mnepython-coregistration>`_
- `Scaling a template MRI for subjects for which no MRI is available
<https://www.slideshare.net/mne-python/mnepython-scale-mri>`_
.. autosummary::
:toctree: generated/
coreg.get_mni_fiducials
gui.coregistration
gui.fiducials
create_default_subject
scale_mri
scale_bem
scale_labels
scale_source_space
Forward Modeling
================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
Forward
SourceSpaces
add_source_space_distances
apply_forward
apply_forward_raw
average_forward_solutions
convert_forward_solution
dig_mri_distances
forward.compute_depth_prior
forward.compute_orient_prior
forward.restrict_forward_to_label
forward.restrict_forward_to_stc
make_bem_model
make_bem_solution
make_forward_dipole
make_forward_solution
make_field_map
make_sphere_model
morph_source_spaces
read_bem_surfaces
read_forward_solution
read_trans
read_source_spaces
read_surface
sensitivity_map
setup_source_space
setup_volume_source_space
surface.complete_surface_info
use_coil_def
write_bem_surfaces
write_trans
:py:mod:`mne.bem`:
.. automodule:: mne.bem
:no-members:
:no-inherited-members:
.. currentmodule:: mne.bem
.. autosummary::
:toctree: generated/
ConductorModel
fit_sphere_to_headshape
get_fitting_dig
make_watershed_bem
make_flash_bem
convert_flash_mris
Inverse Solutions
=================
:py:mod:`mne.minimum_norm`:
.. automodule:: mne.minimum_norm
:no-members:
:no-inherited-members:
.. currentmodule:: mne.minimum_norm
.. autosummary::
:toctree: generated/
InverseOperator
apply_inverse
apply_inverse_epochs
apply_inverse_raw
compute_source_psd
compute_source_psd_epochs
compute_rank_inverse
estimate_snr
make_inverse_operator
prepare_inverse_operator
read_inverse_operator
source_band_induced_power
source_induced_power
write_inverse_operator
point_spread_function
cross_talk_function
:py:mod:`mne.inverse_sparse`:
.. automodule:: mne.inverse_sparse
:no-members:
:no-inherited-members:
.. currentmodule:: mne.inverse_sparse
.. autosummary::
:toctree: generated/
mixed_norm
tf_mixed_norm
gamma_map
make_stc_from_dipoles
:py:mod:`mne.beamformer`:
.. automodule:: mne.beamformer
:no-members:
:no-inherited-members:
.. currentmodule:: mne.beamformer
.. autosummary::
:toctree: generated/
Beamformer
read_beamformer
make_lcmv
apply_lcmv
apply_lcmv_epochs
apply_lcmv_raw
apply_lcmv_cov
make_dics
apply_dics
apply_dics_csd
apply_dics_epochs
rap_music
tf_dics
tf_lcmv
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
Dipole
DipoleFixed
fit_dipole
:py:mod:`mne.dipole`:
.. automodule:: mne.dipole
:no-members:
:no-inherited-members:
.. currentmodule:: mne.dipole
.. autosummary::
:toctree: generated/
get_phantom_dipoles
Source Space Data
=================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
BiHemiLabel
Label
MixedSourceEstimate
SourceEstimate
VectorSourceEstimate
VolSourceEstimate
VolVectorSourceEstimate
SourceMorph
compute_source_morph
head_to_mni
head_to_mri
extract_label_time_course
grade_to_tris
grade_to_vertices
label.select_sources
grow_labels
label_sign_flip
labels_to_stc
morph_labels
random_parcellation
read_labels_from_annot
read_dipole
read_label
read_source_estimate
read_source_morph
split_label
stc_to_label
transform_surface_to
vertex_to_mni
write_labels_to_annot
write_label
Time-Frequency
==============
:py:mod:`mne.time_frequency`:
.. automodule:: mne.time_frequency
:no-members:
:no-inherited-members:
.. currentmodule:: mne.time_frequency
.. autosummary::
:toctree: generated/
AverageTFR
EpochsTFR
CrossSpectralDensity
Functions that operate on mne-python objects:
.. autosummary::
:toctree: generated/
csd_fourier
csd_multitaper
csd_morlet
pick_channels_csd
read_csd
fit_iir_model_raw
psd_welch
psd_multitaper
tfr_morlet
tfr_multitaper
tfr_stockwell
read_tfrs
write_tfrs
Functions that operate on ``np.ndarray`` objects:
.. autosummary::
:toctree: generated/
csd_array_fourier
csd_array_multitaper
csd_array_morlet
dpss_windows
morlet
stft
istft
stftfreq
psd_array_multitaper
psd_array_welch
tfr_array_morlet
tfr_array_multitaper
tfr_array_stockwell
:py:mod:`mne.time_frequency.tfr`:
.. automodule:: mne.time_frequency.tfr
:no-members:
:no-inherited-members:
.. currentmodule:: mne.time_frequency.tfr
.. autosummary::
:toctree: generated/
cwt
morlet
Connectivity Estimation
=======================
:py:mod:`mne.connectivity`:
.. automodule:: mne.connectivity
:no-members:
:no-inherited-members:
.. currentmodule:: mne.connectivity
.. autosummary::
:toctree: generated/
degree
envelope_correlation
phase_slope_index
seed_target_indices
spectral_connectivity
.. _api_reference_statistics:
Statistics
==========
:py:mod:`mne.stats`:
.. automodule:: mne.stats
:no-members:
:no-inherited-members:
.. currentmodule:: mne.stats
Parametric statistics (see :mod:`scipy.stats` and :mod:`statsmodels` for more
options):
.. autosummary::
:toctree: generated/
ttest_1samp_no_p
f_oneway
f_mway_rm
f_threshold_mway_rm
linear_regression
linear_regression_raw
Mass-univariate multiple comparison correction:
.. autosummary::
:toctree: generated/
bonferroni_correction
fdr_correction
Non-parametric (clustering) resampling methods:
.. autosummary::
:toctree: generated/
permutation_cluster_test
permutation_cluster_1samp_test
permutation_t_test
spatio_temporal_cluster_test
spatio_temporal_cluster_1samp_test
summarize_clusters_stc
bootstrap_confidence_interval
Compute ``connectivity`` matrices for cluster-level statistics:
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
channels.find_ch_connectivity
channels.read_ch_connectivity
spatial_dist_connectivity
spatial_src_connectivity
spatial_tris_connectivity
spatial_inter_hemi_connectivity
spatio_temporal_src_connectivity
spatio_temporal_tris_connectivity
spatio_temporal_dist_connectivity
Simulation
==========
:py:mod:`mne.simulation`:
.. automodule:: mne.simulation
:no-members:
:no-inherited-members:
.. currentmodule:: mne.simulation
.. autosummary::
:toctree: generated/
add_chpi
add_ecg
add_eog
add_noise
simulate_evoked
simulate_raw
simulate_stc
simulate_sparse_stc
select_source_in_label
SourceSimulator
.. _api_decoding:
Decoding
========
:py:mod:`mne.decoding`:
.. automodule:: mne.decoding
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
CSP
EMS
FilterEstimator
LinearModel
PSDEstimator
Scaler
TemporalFilter
TimeFrequency
UnsupervisedSpatialFilter
Vectorizer
ReceptiveField
TimeDelayingRidge
SlidingEstimator
GeneralizingEstimator
SPoC
Functions that assist with decoding and model fitting:
.. autosummary::
:toctree: generated/
compute_ems
cross_val_multiscore
get_coef
Realtime
========
Realtime functionality has moved to the standalone module :mod:`mne_realtime`.
MNE-Report
==========
:py:mod:`mne`:
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
Report
open_report
Logging and Configuration
=========================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
get_config_path
get_config
open_docs
set_log_level
set_log_file
set_config
sys_info
verbose
:py:mod:`mne.utils`:
.. currentmodule:: mne.utils
.. automodule:: mne.utils
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
deprecated
warn
:py:mod:`mne.cuda`:
.. currentmodule:: mne.cuda
.. automodule:: mne.cuda
:no-members:
:no-inherited-members:
.. autosummary::
:toctree: generated/
get_cuda_memory
init_cuda
set_cuda_device
|