https://github.com/bashtage/arch
Raw File
Tip revision: 90cd8c6d46ed8a4227acfff16632ffaaf16693ab authored by Kevin Sheppard on 30 August 2019, 09:01:17 UTC
RLS: Release 4.9
Tip revision: 90cd8c6
__init__.py
"""
Tools for implementing statistical bootstraps
"""
from __future__ import absolute_import

from arch.bootstrap import _samplers_python
from arch.bootstrap.base import (CircularBlockBootstrap, IIDBootstrap,
                                 IndependentSamplesBootstrap,
                                 MovingBlockBootstrap, StationaryBootstrap)
from arch.bootstrap.multiple_comparison import MCS, SPA, RealityCheck, StepM

COMPILED_SAMPLERS = True
try:
    from arch.bootstrap import _samplers
except ImportError:
    COMPILED_SAMPLERS = False


__all__ = ['IIDBootstrap', 'CircularBlockBootstrap', 'MovingBlockBootstrap',
           'StationaryBootstrap', 'IndependentSamplesBootstrap',
           'SPA', 'RealityCheck', 'StepM', 'MCS',
           '_samplers_python']

if COMPILED_SAMPLERS:
    __all__ += ['_samplers']
back to top