morestats.py 957 B

123456789101112131415161718192021222324252627
  1. # This file is not meant for public use and will be removed in SciPy v2.0.0.
  2. # Use the `scipy.stats` namespace for importing the functions
  3. # included below.
  4. from scipy._lib.deprecation import _sub_module_deprecation
  5. __all__ = [ # noqa: F822
  6. 'mvsdist',
  7. 'bayes_mvs', 'kstat', 'kstatvar', 'probplot', 'ppcc_max', 'ppcc_plot',
  8. 'boxcox_llf', 'boxcox', 'boxcox_normmax', 'boxcox_normplot',
  9. 'shapiro', 'anderson', 'ansari', 'bartlett', 'levene',
  10. 'fligner', 'mood', 'wilcoxon', 'median_test',
  11. 'circmean', 'circvar', 'circstd', 'anderson_ksamp',
  12. 'yeojohnson_llf', 'yeojohnson', 'yeojohnson_normmax',
  13. 'yeojohnson_normplot', 'chi2_contingency', 'distributions',
  14. ]
  15. def __dir__():
  16. return __all__
  17. def __getattr__(name):
  18. return _sub_module_deprecation(sub_package="stats", module="morestats",
  19. private_modules=["_morestats"], all=__all__,
  20. attribute=name)