You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Takes a p-dim vector `x` and returns parameters restricted to the have roots outside the unit circle, i.e. stationary(AR) or invertible (MA). The mapping is performed via the partial autocorrelations, P as: x -> P -> ϕ.
29
46
30
-
If `pacf_map == "sigmoid"`, then the partial autocorrelations are parameterized as
31
-
P = (exp(x) - 1) / (exp(x) + 1 )
47
+
If `pacf_map == "tanh"`, then the partial autocorrelations are parameterized as
48
+
P = tanh(x)
32
49
33
50
If `pacf_map == "monahan"`, then the partial autocorrelations are parameterized as
34
51
P = x/√(1 + x²)
35
52
53
+
If `pacf_map == "hardtanh"`, then the partial autocorrelations are parameterized as hardtanh
54
+
36
55
If `negative_signs == true`
37
56
coefficients are for polynomial 1 - ϕ₁B - ϕ₂B² - .... which is typically used for AR\\
38
57
If `negative_signs == false`
@@ -49,22 +68,19 @@ julia> check_stationarity(ϕ)[1] # second element would return the eigenvalues
Takes a p-dim vector `θ` with regular AR/MA coefficients and a P-dim vector with seasonal AR/MA coefficients `Θ` (with season `s`) and returns the *non-zero* coefficients in the product polynomial
where both sets of parameters (ϕ and Φ) are restricted to the have roots outside the unit circle, i.e. stationary(AR) or invertible (MA). The mapping is performed via the partial autocorrelations, P as: θ -> P₁ -> ϕ and Θ -> P₂ -> Φ.
138
154
139
-
If `pacf_map == "sigmoid"`, then the partial autocorrelations are parameterized as
155
+
If `pacf_map == "tanh"`, then the partial autocorrelations are parameterized as
140
156
P = (exp(x) - 1) / (exp(x) + 1 )
141
157
142
158
If `pacf_map == "monahan"`, then the partial autocorrelations are parameterized as
@@ -149,18 +165,15 @@ coefficients are for polynomial
149
165
1 + ϕ₁B + ϕ₂B² + .... which is typically used for MA
0 commit comments