Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1# pylint: disable=W0611 

2# flake8: noqa 

3 

4from . import diagnostic 

5from .diagnostic import ( 

6 acorr_ljungbox, acorr_breusch_godfrey, acorr_lm, 

7 CompareCox, compare_cox, CompareJ, compare_j, compare_encompassing, 

8 HetGoldfeldQuandt, het_goldfeldquandt, 

9 het_breuschpagan, het_white, het_arch, 

10 linear_harvey_collier, linear_rainbow, linear_lm, linear_reset, 

11 breaks_cusumolsresid, breaks_hansen, recursive_olsresiduals, 

12 spec_white 

13) 

14from ._adnorm import normal_ad 

15from ._lilliefors import lilliefors 

16 

17from ._knockoff import RegressionFDR 

18from . import multicomp 

19from .multitest import (multipletests, fdrcorrection, fdrcorrection_twostage, 

20 local_fdr, NullDistribution) 

21from .multicomp import tukeyhsd 

22from . import gof 

23from .gof import (powerdiscrepancy, gof_chisquare_discrete, 

24 chisquare_effectsize) 

25from . import stattools 

26from .stattools import durbin_watson, omni_normtest, jarque_bera 

27 

28from . import sandwich_covariance 

29from .sandwich_covariance import ( 

30 cov_cluster, cov_cluster_2groups, cov_nw_panel, 

31 cov_hac, cov_white_simple, 

32 cov_hc0, cov_hc1, cov_hc2, cov_hc3, 

33 se_cov 

34) 

35 

36from .weightstats import (DescrStatsW, CompareMeans, ttest_ind, ttost_ind, 

37 ttost_paired, ztest, ztost, zconfint) 

38 

39from .proportion import ( 

40 binom_test_reject_interval, binom_test, 

41 binom_tost, binom_tost_reject_interval, 

42 power_binom_tost, power_ztost_prop, 

43 proportion_confint, proportion_effectsize, 

44 proportions_chisquare, proportions_chisquare_allpairs, 

45 proportions_chisquare_pairscontrol, proportions_ztest, 

46 proportions_ztost, multinomial_proportions_confint) 

47 

48from .power import (TTestPower, TTestIndPower, GofChisquarePower, 

49 NormalIndPower, FTestAnovaPower, FTestPower, 

50 tt_solve_power, tt_ind_solve_power, zt_ind_solve_power) 

51 

52from .descriptivestats import Describe 

53 

54from .anova import anova_lm 

55 

56from .oaxaca import OaxacaBlinder 

57 

58from . import moment_helpers 

59from .correlation_tools import ( 

60 corr_clipped, corr_nearest, 

61 corr_nearest_factor, corr_thresholded, cov_nearest, 

62 cov_nearest_factor_homog, FactoredPSDMatrix) 

63 

64from statsmodels.sandbox.stats.runs import Runs, runstest_1samp, runstest_2samp 

65 

66from statsmodels.stats.contingency_tables import (mcnemar, cochrans_q, 

67 SquareTable, 

68 Table2x2, 

69 Table, 

70 StratifiedTable) 

71from .mediation import Mediation 

72 

73__all__ = ["acorr_lm", "acorr_breusch_godfrey", "acorr_ljungbox", "anova_lm", "binom_test", 

74 "binom_test_reject_interval", "Mediation", "mcnemar", "cochrans_q", "SquareTable", 

75 "Table", 'Table2x2', "StratifiedTable", "corr_clipped", "corr_nearest", 

76 "corr_nearest_factor", "corr_thresholded", "cov_nearest", "cov_nearest_factor_homog", 

77 "FactoredPSDMatrix", "Describe", "OaxacaBlinder", "Runs", "runstest_1samp", 

78 "runstest_2samp", "moment_helpers", "binom_tost", "binom_tost_reject_interval", 

79 "power_binom_tost", "power_ztost_prop", "proportion_confint", "proportion_effectsize", 

80 "proportions_chisquare", "proportions_chisquare_allpairs", 

81 "proportions_chisquare_pairscontrol", "proportions_ztest", "proportions_ztost", 

82 "multinomial_proportions_confint", "TTestPower", "TTestIndPower", "GofChisquarePower", 

83 "NormalIndPower", "FTestAnovaPower", "FTestPower", "tt_solve_power", 

84 "tt_ind_solve_power", "zt_ind_solve_power", "cov_cluster", "cov_cluster_2groups", 

85 "cov_nw_panel", "cov_hac", "cov_white_simple", "cov_hc0", "cov_hc1", "cov_hc2", 

86 "cov_hc3", "se_cov", "CompareCox", "compare_cox", "CompareJ", "compare_j", 

87 "compare_encompassing", "HetGoldfeldQuandt", "het_goldfeldquandt", "het_breuschpagan", 

88 "het_white", "het_arch", "linear_harvey_collier", "linear_rainbow", "linear_lm", 

89 "linear_reset", "breaks_cusumolsresid", "breaks_hansen", "recursive_olsresiduals", 

90 "spec_white", "diagnostic", "normal_ad", "lilliefors", "RegressionFDR", "multicomp", 

91 "multipletests", "fdrcorrection", "fdrcorrection_twostage", "local_fdr", 

92 "NullDistribution", "tukeyhsd", "gof", "powerdiscrepancy", "gof_chisquare_discrete", 

93 "chisquare_effectsize", "stattools", "durbin_watson", "omni_normtest", "jarque_bera", 

94 "sandwich_covariance", "DescrStatsW", "CompareMeans", "ttest_ind", "ttost_ind", 

95 "ttost_paired", "ztest", "ztost", "zconfint"]