File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 16
16
import sys
17
17
on_rtd = os .environ .get ('READTHEDOCS' , None ) == 'True'
18
18
19
- if on_rtd :
19
+ if False : # on_rtd:
20
20
try :
21
21
from unittest .mock import MagicMock
22
22
except ImportError :
Original file line number Diff line number Diff line change 1
1
Unit Root Testing
2
- =================
2
+ -----------------
3
3
4
4
Many time series are highly persistent, and determining whether the data appear
5
5
to be stationary or contains a unit root is the first step in many analyses.
@@ -19,12 +19,12 @@ process with an alternative of a unit root.
19
19
.. toctree ::
20
20
:maxdepth: 2
21
21
22
- Unit Root Tests <tests >
23
22
Examples <unitroot_examples >
23
+ Unit Root Tests <tests >
24
24
25
25
26
26
Introduction
27
- ------------
27
+ ============
28
28
29
29
All tests expect a 1-d series as the first input. The input can be any array that can be `squeeze`d to 1-d, a pandas
30
30
`Series ` or a pandas `DataFrame ` that contains a single variable.
@@ -42,7 +42,7 @@ All tests share a common structure. The key elements are:
42
42
* `summary() ` - Returns a summary object that can be printed to get a formatted table
43
43
44
44
Basic Example
45
- -------------
45
+ =============
46
46
47
47
This basic example show the use of the Augmented-Dickey fuller to test whether the default premium, defined as the
48
48
difference between the yields of large portfolios of BAA and AAA bonds. This example uses a constant and time trend.
You can’t perform that action at this time.
0 commit comments