https://github.com/bashtage/arch
Raw File
Tip revision: 16a7fd339b33b825262fc0ee346703dac7063968 authored by Kevin Sheppard on 13 December 2017, 22:14:24 UTC
BLD: Ensure all files are included in sdist
Tip revision: 16a7fd3
__init__.py
"""
Tools for implementing statistical bootstraps
"""
from __future__ import absolute_import

from arch.bootstrap import _samplers_python
from arch.bootstrap.base import IIDBootstrap, CircularBlockBootstrap, MovingBlockBootstrap, \
    StationaryBootstrap
from arch.bootstrap.multiple_comparison import SPA, RealityCheck, StepM, MCS
COMPILED_SAMPLERS = True
try:
    from arch.bootstrap import _samplers
except ImportError:
    COMPILED_SAMPLERS = False


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

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