|
1 |
| -.. py:currentmodule:: arch.bootstrap |
| 1 | +.. module:: arch.bootstrap |
| 2 | + :noindex: |
| 3 | +.. currentmodule:: arch.bootstrap |
2 | 4 |
|
3 | 5 | Time-series Bootstraps
|
4 | 6 | ----------------------
|
5 | 7 | Bootstraps for time-series data come in a variety of forms. The three contained
|
6 | 8 | in this package are the stationary bootstrap
|
7 |
| -(:py:class:`~arch.bootstrap.StationaryBootstrap`), which uses blocks with an |
| 9 | +(:class:`~arch.bootstrap.StationaryBootstrap`), which uses blocks with an |
8 | 10 | exponentially distributed lengths, the circular block bootstrap
|
9 |
| -(:py:class:`~arch.bootstrap.CircularBlockBootstrap`), which uses |
| 11 | +(:class:`~arch.bootstrap.CircularBlockBootstrap`), which uses |
10 | 12 | fixed length blocks, and the moving block bootstrap which also uses fixed
|
11 |
| -length blocks (:py:class:`~arch.bootstrap.MovingBlockBootstrap`). The moving |
| 13 | +length blocks (:class:`~arch.bootstrap.MovingBlockBootstrap`). The moving |
12 | 14 | block bootstrap does *not* wrap around and so observations near the start or
|
13 | 15 | end of the series will be systematically under-sampled. It is not recommended
|
14 | 16 | for this reason.
|
15 | 17 |
|
16 |
| -The Stationary Bootstrap |
17 |
| -======================== |
| 18 | +.. autosummary:: |
| 19 | + :toctree: generated/ |
18 | 20 |
|
19 |
| -.. autoclass:: StationaryBootstrap |
20 |
| - :members: conf_int, var, cov, apply, bootstrap, reset, seed, set_state, get_state |
21 |
| - |
22 |
| -The Circular Block Bootstrap |
23 |
| -============================ |
24 |
| - |
25 |
| -.. autoclass:: CircularBlockBootstrap |
26 |
| - :members: conf_int, var, cov, apply, bootstrap, reset, seed, set_state, get_state |
27 |
| - |
28 |
| -The Moving Block Bootstrap |
29 |
| -========================== |
30 |
| - |
31 |
| -.. autoclass:: MovingBlockBootstrap |
32 |
| - :members: conf_int, var, cov, apply, bootstrap, reset, seed, set_state, get_state |
| 21 | + StationaryBootstrap |
| 22 | + CircularBlockBootstrap |
| 23 | + MovingBlockBootstrap |
0 commit comments