macroshock 0.2.2__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {macroshock-0.2.2/src/macroshock.egg-info → macroshock-0.2.4}/PKG-INFO +15 -14
- {macroshock-0.2.2 → macroshock-0.2.4}/README.md +14 -13
- {macroshock-0.2.2 → macroshock-0.2.4}/pyproject.toml +1 -1
- {macroshock-0.2.2 → macroshock-0.2.4/src/macroshock.egg-info}/PKG-INFO +15 -14
- {macroshock-0.2.2 → macroshock-0.2.4}/LICENSE +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/setup.cfg +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/__init__.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/bootstrap.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/data.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/fc.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/fevd.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/identification.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/irf.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/macroshock.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/plotting.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/stats.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock/var.py +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock.egg-info/SOURCES.txt +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock.egg-info/dependency_links.txt +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock.egg-info/requires.txt +0 -0
- {macroshock-0.2.2 → macroshock-0.2.4}/src/macroshock.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: macroshock
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Powerful time series econometrics for Structural Vector Autoregressions (SVAR)
|
|
5
5
|
Author-email: Patricio Arias <patoariaslopez2@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -41,13 +41,14 @@ Dynamic: license-file
|
|
|
41
41
|
|
|
42
42
|
## Main Features
|
|
43
43
|
|
|
44
|
-
*
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
* **Restricted VAR estimation** (Lütkepohl-style GLS), with support for:
|
|
45
|
+
|Description|Input in SVAR|
|
|
46
|
+
|-|-|
|
|
47
|
+
|Constant, trend and quadratic trend.|`const`|
|
|
48
|
+
|Exogenous variables.|`data_exogenous`,`variables_exogenous`|
|
|
49
|
+
|Seasonal dummies (quarterly or monthly).|`DUM`|
|
|
50
|
+
|Linear restrictions on the coefficients (`restrictions='zeros'` or `'custom zeros'`).|`restrictions`, `R`|
|
|
51
|
+
* **Four structural identification methods**:
|
|
51
52
|
|
|
52
53
|
|Method|Description|
|
|
53
54
|
|-|-|
|
|
@@ -56,12 +57,12 @@ Dynamic: license-file
|
|
|
56
57
|
|`signs`|Sign restrictions (orthogonal rotation sampling with acceptance/rejection)|
|
|
57
58
|
|`IV`|Instrumental variable identification (proxy-SVAR)|
|
|
58
59
|
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
60
|
+
* **Impulse-response functions (IRF)** with confidence bands.
|
|
61
|
+
* **Forecast error variance decomposition (FEVD)**.
|
|
62
|
+
* **Conditional forecasts** with confidence bands.
|
|
63
|
+
* **Bootstrap** (normal or *wild* resampling) for inference.
|
|
64
|
+
* **Built-in plots** for IRF, forecasts and FEVD, publication-ready.
|
|
65
|
+
* **Stability test** of the system (characteristic polynomial roots).
|
|
65
66
|
|
|
66
67
|
## Installation
|
|
67
68
|
|
|
@@ -4,13 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
## Main Features
|
|
6
6
|
|
|
7
|
-
*
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
7
|
+
* **Restricted VAR estimation** (Lütkepohl-style GLS), with support for:
|
|
8
|
+
|Description|Input in SVAR|
|
|
9
|
+
|-|-|
|
|
10
|
+
|Constant, trend and quadratic trend.|`const`|
|
|
11
|
+
|Exogenous variables.|`data_exogenous`,`variables_exogenous`|
|
|
12
|
+
|Seasonal dummies (quarterly or monthly).|`DUM`|
|
|
13
|
+
|Linear restrictions on the coefficients (`restrictions='zeros'` or `'custom zeros'`).|`restrictions`, `R`|
|
|
14
|
+
* **Four structural identification methods**:
|
|
14
15
|
|
|
15
16
|
|Method|Description|
|
|
16
17
|
|-|-|
|
|
@@ -19,12 +20,12 @@
|
|
|
19
20
|
|`signs`|Sign restrictions (orthogonal rotation sampling with acceptance/rejection)|
|
|
20
21
|
|`IV`|Instrumental variable identification (proxy-SVAR)|
|
|
21
22
|
|
|
22
|
-
*
|
|
23
|
-
*
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
*
|
|
23
|
+
* **Impulse-response functions (IRF)** with confidence bands.
|
|
24
|
+
* **Forecast error variance decomposition (FEVD)**.
|
|
25
|
+
* **Conditional forecasts** with confidence bands.
|
|
26
|
+
* **Bootstrap** (normal or *wild* resampling) for inference.
|
|
27
|
+
* **Built-in plots** for IRF, forecasts and FEVD, publication-ready.
|
|
28
|
+
* **Stability test** of the system (characteristic polynomial roots).
|
|
28
29
|
|
|
29
30
|
## Installation
|
|
30
31
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: macroshock
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Powerful time series econometrics for Structural Vector Autoregressions (SVAR)
|
|
5
5
|
Author-email: Patricio Arias <patoariaslopez2@gmail.com>
|
|
6
6
|
License: MIT License
|
|
@@ -41,13 +41,14 @@ Dynamic: license-file
|
|
|
41
41
|
|
|
42
42
|
## Main Features
|
|
43
43
|
|
|
44
|
-
*
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
44
|
+
* **Restricted VAR estimation** (Lütkepohl-style GLS), with support for:
|
|
45
|
+
|Description|Input in SVAR|
|
|
46
|
+
|-|-|
|
|
47
|
+
|Constant, trend and quadratic trend.|`const`|
|
|
48
|
+
|Exogenous variables.|`data_exogenous`,`variables_exogenous`|
|
|
49
|
+
|Seasonal dummies (quarterly or monthly).|`DUM`|
|
|
50
|
+
|Linear restrictions on the coefficients (`restrictions='zeros'` or `'custom zeros'`).|`restrictions`, `R`|
|
|
51
|
+
* **Four structural identification methods**:
|
|
51
52
|
|
|
52
53
|
|Method|Description|
|
|
53
54
|
|-|-|
|
|
@@ -56,12 +57,12 @@ Dynamic: license-file
|
|
|
56
57
|
|`signs`|Sign restrictions (orthogonal rotation sampling with acceptance/rejection)|
|
|
57
58
|
|`IV`|Instrumental variable identification (proxy-SVAR)|
|
|
58
59
|
|
|
59
|
-
*
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
*
|
|
60
|
+
* **Impulse-response functions (IRF)** with confidence bands.
|
|
61
|
+
* **Forecast error variance decomposition (FEVD)**.
|
|
62
|
+
* **Conditional forecasts** with confidence bands.
|
|
63
|
+
* **Bootstrap** (normal or *wild* resampling) for inference.
|
|
64
|
+
* **Built-in plots** for IRF, forecasts and FEVD, publication-ready.
|
|
65
|
+
* **Stability test** of the system (characteristic polynomial roots).
|
|
65
66
|
|
|
66
67
|
## Installation
|
|
67
68
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|