File: __init__.py

package info (click to toggle)
python-mne 0.19.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 100,440 kB
  • sloc: python: 120,243; pascal: 1,861; makefile: 225; sh: 15
file content (12 lines) | stat: -rw-r--r-- 617 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
"""Functions for statistical analysis."""

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