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
|
.. _api_reference:
====================
Python API Reference
====================
This is the classes and functions reference of MNE-Python. Functions are
grouped thematically by analysis stage. Functions and classes that are not
below a module heading are found in the :py:mod:`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
Classes
=======
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: class.rst
io.Raw
io.RawFIF
io.RawArray
Annotations
AcqParserFIF
Epochs
Evoked
SourceSpaces
Forward
SourceEstimate
VolSourceEstimate
MixedSourceEstimate
Covariance
Dipole
DipoleFixed
Label
BiHemiLabel
Transform
Report
Info
Projection
preprocessing.ICA
preprocessing.Xdawn
decoding.CSP
decoding.EpochsVectorizer
decoding.FilterEstimator
decoding.GeneralizationAcrossTime
decoding.PSDEstimator
decoding.Scaler
decoding.TimeDecoding
realtime.RtEpochs
realtime.RtClient
realtime.MockRtClient
realtime.FieldTripClient
realtime.StimServer
realtime.StimClient
Logging and Configuration
=========================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
get_config_path
get_config
set_log_level
set_log_file
set_config
sys_info
:py:mod:`mne.cuda`:
.. automodule:: mne.cuda
:no-members:
:no-inherited-members:
.. currentmodule:: mne.cuda
.. autosummary::
:toctree: generated/
:template: function.rst
init_cuda
Reading raw data
================
:py:mod:`mne.io`:
.. currentmodule:: mne.io
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
Raw
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
read_raw_bti
read_raw_cnt
read_raw_ctf
read_raw_edf
read_raw_kit
read_raw_nicolet
read_raw_eeglab
read_raw_brainvision
read_raw_egi
read_raw_fif
.. currentmodule:: mne.io.kit
:py:mod:`mne.io.kit`:
.. autosummary::
:toctree: generated/
:template: function.rst
read_mrk
File I/O
========
.. currentmodule:: mne
Functions:
.. autosummary::
:toctree: generated
:template: function.rst
decimate_surface
get_head_surf
get_meg_helmet_surf
get_volume_labels_from_aseg
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_events
read_evokeds
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
save_stc_as_volume
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
io.read_info
Creating data objects from arrays
=================================
Classes:
.. currentmodule:: mne
:py:mod:`mne`:
.. autosummary::
:toctree: generated/
:template: class.rst
EvokedArray
EpochsArray
.. currentmodule:: mne.io
:py:mod:`mne.io`:
.. autosummary::
:toctree: generated/
:template: class.rst
RawArray
Functions:
.. currentmodule:: mne
:py:mod:`mne`:
.. autosummary::
:toctree: generated/
:template: function.rst
create_info
Sample datasets
===============
:py:mod:`mne.datasets.sample`:
.. automodule:: mne.datasets.sample
:no-members:
:no-inherited-members:
.. currentmodule:: mne.datasets.sample
.. autosummary::
:toctree: generated/
:template: function.rst
data_path
:py:mod:`mne.datasets.spm_face`:
.. automodule:: mne.datasets.spm_face
:no-members:
:no-inherited-members:
.. currentmodule:: mne.datasets.spm_face
.. autosummary::
:toctree: generated/
:template: function.rst
data_path
:py:mod:`mne.datasets.brainstorm`:
.. automodule:: mne.datasets.brainstorm
:no-members:
:no-inherited-members:
.. currentmodule:: mne.datasets.brainstorm
.. autosummary::
:toctree: generated/
:template: function.rst
bst_auditory.data_path
bst_resting.data_path
bst_raw.data_path
:py:mod:`mne.datasets.megsim`:
.. automodule:: mne.datasets.megsim
:no-members:
:no-inherited-members:
.. currentmodule:: mne.datasets.megsim
.. autosummary::
:toctree: generated/
:template: function.rst
data_path
load_data
Visualization
=============
:py:mod:`mne.viz`:
.. automodule:: mne.viz
:no-members:
:no-inherited-members:
.. currentmodule:: mne.viz
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
ClickableImage
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
circular_layout
mne_analyze_colormap
plot_bem
plot_connectivity_circle
plot_cov
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_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_snr_estimate
plot_source_estimates
plot_sparse_source_estimates
plot_tfr_topomap
plot_topo_image_epochs
plot_topomap
plot_trans
compare_fiff
add_background_image
.. currentmodule:: mne.io
.. autosummary::
:toctree: generated/
:template: function.rst
show_fiff
Preprocessing
=============
Projections:
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
compute_proj_epochs
compute_proj_evoked
compute_proj_raw
read_proj
write_proj
.. currentmodule:: mne.preprocessing.ssp
.. autosummary::
:toctree: generated/
:template: function.rst
make_eeg_average_ref_proj
Manipulate channels and set sensors locations for processing and plotting:
.. currentmodule:: mne.channels
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
Layout
Montage
DigMontage
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
fix_mag_coil_types
read_montage
read_dig_montage
read_layout
find_layout
make_eeg_layout
make_grid_layout
read_ch_connectivity
equalize_channels
rename_channels
generate_2d_layout
:py:mod:`mne.preprocessing`:
.. automodule:: mne.preprocessing
:no-members:
:no-inherited-members:
.. currentmodule:: mne.preprocessing
.. autosummary::
:toctree: generated/
:template: function.rst
compute_proj_ecg
compute_proj_eog
create_ecg_epochs
create_eog_epochs
find_ecg_events
find_eog_events
ica_find_ecg_events
ica_find_eog_events
maxwell_filter
read_ica
run_ica
corrmap
EEG referencing:
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
add_reference_channels
set_bipolar_reference
set_eeg_reference
:py:mod:`mne.filter`:
.. automodule:: mne.filter
:no-members:
:no-inherited-members:
.. currentmodule:: mne.filter
.. autosummary::
:toctree: generated/
:template: function.rst
band_pass_filter
construct_iir_filter
estimate_ringing_samples
filter_data
high_pass_filter
low_pass_filter
notch_filter
Head position estimation:
.. currentmodule:: mne.chpi
.. autosummary::
:toctree: generated/
:template: function.rst
filter_chpi
head_pos_to_trans_rot_t
read_head_pos
write_head_pos
.. currentmodule:: mne.transforms
.. autosummary::
:toctree: generated/
:template: function.rst
quat_to_rot
rot_to_quat
Events
======
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
concatenate_events
find_events
find_stim_steps
make_fixed_length_events
merge_events
parse_config
pick_events
read_events
write_events
concatenate_epochs
.. currentmodule:: mne.event
.. autosummary::
:toctree: generated/
:template: function.rst
define_target_events
.. currentmodule:: mne.epochs
.. autosummary::
:toctree: generated/
:template: function.rst
add_channels_epochs
average_movements
combine_event_ids
equalize_epoch_counts
Sensor Space Data
=================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
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
==========
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
compute_covariance
compute_raw_covariance
make_ad_hoc_cov
read_cov
write_cov
.. currentmodule:: mne.cov
.. autosummary::
:toctree: generated/
:template: function.rst
regularize
MRI Processing
==============
.. currentmodule:: mne
Step by step instructions for using :func:`gui.coregistration`:
- `Coregistration for subjects with structural MRI
<http://www.slideshare.net/mne-python/mnepython-coregistration>`_
- `Scaling a template MRI for subjects for which no MRI is available
<http://www.slideshare.net/mne-python/mnepython-scale-mri>`_
.. autosummary::
:toctree: generated/
:template: function.rst
gui.coregistration
gui.fiducials
create_default_subject
scale_mri
scale_bem
scale_labels
scale_source_space
Forward Modeling
================
:py:mod:`mne`:
.. currentmodule:: mne
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
add_source_space_distances
apply_forward
apply_forward_raw
average_forward_solutions
convert_forward_solution
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
write_bem_surfaces
write_trans
.. currentmodule:: mne.bem
.. autosummary::
:toctree: generated/
:template: function.rst
make_watershed_bem
make_flash_bem
convert_flash_mris
.. currentmodule:: mne.forward
.. autosummary::
:toctree: generated/
:template: function.rst
restrict_forward_to_label
restrict_forward_to_stc
Inverse Solutions
=================
:py:mod:`mne.minimum_norm`:
.. automodule:: mne.minimum_norm
:no-members:
:no-inherited-members:
.. currentmodule:: mne.minimum_norm
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
InverseOperator
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
apply_inverse
apply_inverse_epochs
apply_inverse_raw
compute_source_psd
compute_source_psd_epochs
compute_rank_inverse
estimate_snr
make_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/
:template: function.rst
mixed_norm
tf_mixed_norm
gamma_map
:py:mod:`mne.beamformer`:
.. automodule:: mne.beamformer
:no-members:
:no-inherited-members:
.. currentmodule:: mne.beamformer
.. autosummary::
:toctree: generated/
:template: function.rst
lcmv
lcmv_epochs
lcmv_raw
dics
dics_epochs
dics_source_power
rap_music
:py:mod:`mne`:
.. currentmodule:: mne
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
fit_dipole
:py:mod:`mne.dipole`:
.. currentmodule:: mne.dipole
Functions:
.. autosummary::
:toctree: generated/
:template: function.rst
get_phantom_dipoles
Source Space Data
=================
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
compute_morph_matrix
extract_label_time_course
grade_to_tris
grade_to_vertices
grow_labels
label_sign_flip
morph_data
morph_data_precomputed
read_labels_from_annot
read_dipole
read_label
read_source_estimate
save_stc_as_volume
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
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
AverageTFR
EpochsTFR
Functions that operate on mne-python objects:
.. autosummary::
:toctree: generated/
:template: function.rst
csd_epochs
psd_welch
psd_multitaper
fit_iir_model_raw
tfr_morlet
tfr_multitaper
tfr_stockwell
read_tfrs
write_tfrs
Functions that operate on ``np.ndarray`` objects:
.. autosummary::
:toctree: generated/
:template: function.rst
csd_array
cwt_morlet
dpss_windows
morlet
single_trial_power
stft
istft
stftfreq
:py:mod:`mne.time_frequency.tfr`:
.. automodule:: mne.time_frequency.tfr
:no-members:
:no-inherited-members:
.. currentmodule:: mne.time_frequency.tfr
.. autosummary::
:toctree: generated/
:template: function.rst
cwt
morlet
Connectivity Estimation
=======================
:py:mod:`mne.connectivity`:
.. automodule:: mne.connectivity
:no-members:
:no-inherited-members:
.. currentmodule:: mne.connectivity
.. autosummary::
:toctree: generated/
:template: function.rst
seed_target_indices
spectral_connectivity
phase_slope_index
Statistics
==========
:py:mod:`mne.stats`:
.. automodule:: mne.stats
:no-members:
:no-inherited-members:
.. currentmodule:: mne.stats
.. autosummary::
:toctree: generated/
:template: function.rst
bonferroni_correction
fdr_correction
permutation_cluster_test
permutation_cluster_1samp_test
permutation_t_test
spatio_temporal_cluster_test
spatio_temporal_cluster_1samp_test
ttest_1samp_no_p
linear_regression
linear_regression_raw
f_mway_rm
f_threshold_mway_rm
summarize_clusters_stc
Functions to compute connectivity (adjacency) matrices for cluster-level statistics
.. currentmodule:: mne
.. autosummary::
:toctree: generated/
:template: function.rst
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/
:template: function.rst
simulate_evoked
simulate_raw
simulate_stc
simulate_sparse_stc
select_source_in_label
Decoding
========
:py:mod:`mne.decoding`:
.. automodule:: mne.decoding
:no-members:
:no-inherited-members:
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
CSP
EpochsVectorizer
FilterEstimator
GeneralizationAcrossTime
PSDEstimator
Scaler
TimeDecoding
Realtime
========
:py:mod:`mne.realtime`:
.. automodule:: mne.realtime
:no-members:
:no-inherited-members:
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
RtEpochs
RtClient
MockRtClient
FieldTripClient
StimServer
StimClient
MNE-Report
==========
:py:mod:`mne.report`:
.. automodule:: mne.report
:no-members:
:no-inherited-members:
.. currentmodule:: mne.report
Classes:
.. autosummary::
:toctree: generated/
:template: class.rst
Report
|