https://github.com/bashtage/arch
Raw File
Tip revision: b19b7129a3f104b951440a4a66092b0f3ea1bc57 authored by Kevin Sheppard on 28 March 2019, 18:28:15 UTC
DOC: Update changelog
Tip revision: b19b712
__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