35 lines
843 B
Python
35 lines
843 B
Python
# 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
|