reconnect moved files to git repo
This commit is contained in:
@ -0,0 +1,40 @@
|
||||
# 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
|
||||
DunnettResult
|
||||
PearsonRResult
|
||||
FitResult
|
||||
OddsRatioResult
|
||||
TtestResult
|
||||
ECDFResult
|
||||
EmpiricalDistributionFunction
|
||||
|
||||
"""
|
||||
|
||||
__all__ = ['BinomTestResult', 'RelativeRiskResult', 'TukeyHSDResult',
|
||||
'PearsonRResult', 'FitResult', 'OddsRatioResult',
|
||||
'TtestResult', 'DunnettResult', 'ECDFResult',
|
||||
'EmpiricalDistributionFunction']
|
||||
|
||||
|
||||
from ._binomtest import BinomTestResult
|
||||
from ._odds_ratio import OddsRatioResult
|
||||
from ._relative_risk import RelativeRiskResult
|
||||
from ._hypotests import TukeyHSDResult
|
||||
from ._multicomp import DunnettResult
|
||||
from ._stats_py import PearsonRResult, TtestResult
|
||||
from ._fit import FitResult
|
||||
from ._survival import ECDFResult, EmpiricalDistributionFunction
|
||||
Reference in New Issue
Block a user