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
|