mstats_extras.py 721 B

12345678910111213141516171819202122232425
  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. 'compare_medians_ms',
  7. 'hdquantiles', 'hdmedian', 'hdquantiles_sd',
  8. 'idealfourths',
  9. 'median_cihs','mjci','mquantiles_cimj',
  10. 'rsh',
  11. 'trimmed_mean_ci',
  12. ]
  13. def __dir__():
  14. return __all__
  15. def __getattr__(name):
  16. return _sub_module_deprecation(sub_package="stats", module="mstats_extras",
  17. private_modules=["_mstats_extras"], all=__all__,
  18. attribute=name, correct_module="mstats")