File: __init__.py

package info (click to toggle)
python-mne 0.13.1%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 92,032 kB
  • ctags: 8,249
  • sloc: python: 84,750; makefile: 205; sh: 15
file content (13 lines) | stat: -rw-r--r-- 653 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Functions for statistical analysis"""

from .parametric import f_threshold_mway_rm, f_mway_rm
from .permutations import permutation_t_test
from .cluster_level import (permutation_cluster_test,
                            permutation_cluster_1samp_test,
                            spatio_temporal_cluster_1samp_test,
                            spatio_temporal_cluster_test,
                            _st_mask_from_s_inds,
                            ttest_1samp_no_p,
                            summarize_clusters_stc)
from .multi_comp import fdr_correction, bonferroni_correction
from .regression import linear_regression, linear_regression_raw