using for loop to install conda package
This commit is contained in:
34
.CondaPkg/env/Lib/site-packages/scipy/stats/_result_classes.py
vendored
Normal file
34
.CondaPkg/env/Lib/site-packages/scipy/stats/_result_classes.py
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
# This module exists only to allow Sphinx to generate docs
|
||||
# for the result objects returned by some functions in stats
|
||||
# _without_ adding them to the main stats documentation page.
|
||||
|
||||
"""
|
||||
Result classes
|
||||
--------------
|
||||
|
||||
.. currentmodule:: scipy.stats._result_classes
|
||||
|
||||
.. autosummary::
|
||||
:toctree: generated/
|
||||
|
||||
RelativeRiskResult
|
||||
BinomTestResult
|
||||
TukeyHSDResult
|
||||
PearsonRResult
|
||||
FitResult
|
||||
OddsRatioResult
|
||||
TtestResult
|
||||
|
||||
"""
|
||||
|
||||
__all__ = ['BinomTestResult', 'RelativeRiskResult', 'TukeyHSDResult',
|
||||
'PearsonRResult', 'FitResult', 'OddsRatioResult',
|
||||
'TtestResult']
|
||||
|
||||
|
||||
from ._binomtest import BinomTestResult
|
||||
from ._odds_ratio import OddsRatioResult
|
||||
from ._relative_risk import RelativeRiskResult
|
||||
from ._hypotests import TukeyHSDResult
|
||||
from ._stats_py import PearsonRResult, TtestResult
|
||||
from ._fit import FitResult
|
||||
Reference in New Issue
Block a user