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
Copy file name to clipboardExpand all lines: R/param_file.R
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,7 @@
25
25
#' \item \code{policy = "current"}: all the estimations are fixed and AO added for new data (since v.2.2.3), short name `policy = "n"`;
26
26
#' \item \code{policy = "fixed"}: all the estimations are fixed (since v.2.2.3), short name `policy = "f"`;
27
27
#' \item \code{policy = "fixedparameters"}: re-estimation of the coefficients of the regression variables (but not the ARIMA coefficients), short name `policy = "fp"`;
28
+
#' \item \code{policy = "fixedarparameters"}: re-estimation of the coefficients of the regression variables and of the MA coefficients of the ARIMA model (but not the AR coefficients), short name `policy = "farp"` (since v.3.3.1);
28
29
#' \item \code{policy = "parameters"} (the default): \code{policy = "fixedparameters"} + re-estimation of ARIMA coefficients, short name `policy = "p"`;
29
30
#' \item \code{policy = "lastoutliers"}: \code{policy = "parameters"} + re-identification of last outliers (on the last year), short name `policy = "l"`;
30
31
#' \item \code{policy = "outliers"}: \code{policy = "lastoutliers"} + re-identification of all outliers, short name `policy = "o"`;
The JWSACruncher is not included in the package. It can be downloaded from GitHub (<https://github.com/jdemetra/jwsacruncher/releases>) or with the function `download_cruncher()`:
41
+
The JWSACruncher is not included in the package.
42
+
It can be downloaded from GitHub (<https://github.com/jdemetra/jwsacruncher/releases> or <https://github.com/jdemetra/jdplus-main/releases>) or with the function `download_cruncher()`:
Copy file name to clipboardExpand all lines: vignettes/run_jwsacruncher.Rmd
+12-11Lines changed: 12 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ library(rjwsacruncher)
21
21
# Launch the 'JWSACruncher"
22
22
23
23
To use `rjwsacruncher` you need to download the JWACruncher.
24
-
It is available on <https://github.com/jdemetra/jdemetra-app/releases> (for JDemetra+ 2.x.y versions) or <https://github.com/jdemetra/jdemetra-app/releases> (for JDemetra+ 3.x.y versions).
24
+
It is available on <https://github.com/jdemetra/jdemetra-app/releases> (for JDemetra+ 2.x.y versions) or <https://github.com/jdemetra/jdplus-main/releases> (for JDemetra+ 3.x.y versions).
25
25
It can also be downloaded with the function `download_cruncher()`:
26
26
```{r, eval = FALSE}
27
27
library(rjwsacruncher)
@@ -56,36 +56,37 @@ The three most important parameters of `create_param_file()` are:
56
56
1.`policy` the refresh policy (see table below).
57
57
58
58
```{r,echo=FALSE}
59
-
refresh_policy <- structure(list(`Option on JDemetra+` = c(
59
+
refresh_policy <- data.frame(`Option on JDemetra+` = c(
60
60
"Current[AO]: fixed model + AO for new data",
61
61
"Fixed model",
62
62
"Estimate regression coefficients",
63
+
"Estimate regression coefficients + MA parameters of the ARIMA model",
"The ARIMA model, outliers and other regression parameters are not re-identified and the values of all parameters are fixed. The transformation type remains unchanged. An additive outlier (AO) is added for new data",
77
-
"The ARIMA model, outliers and other regression parameters are not re-identified and the values of all parameters are fixed. The transformation type remains unchanged.",
77
+
"The ARIMA model, outliers and other regression parameters are not re-identified and the values of all parameters are fixed. The transformation type remains unchanged. An additive outlier (AO) is added for new data. (since v.2.2.3)",
78
+
"The ARIMA model, outliers and other regression parameters are not re-identified and the values of all parameters are fixed. The transformation type remains unchanged. (since v.2.2.3)",
78
79
"The ARIMA model, outliers and other regression parameters are not re-identified. The coefficients of the ARIMA model are fixed, other coefficients are re-estimated. The transformation type remains unchanged.",
80
+
"The ARIMA model, outliers and other regression parameters are not re-identified. The AR coefficients of the ARIMA model are fixed, other coefficients are re-estimated (MA coefficients + regressors). The transformation type remains unchanged. (since v.3.3.1)",
79
81
"The ARIMA model, outliers and other regression parameters are not re-identified. All parameters of the RegARIMA model are re-estimated. The transformation type remains unchanged.",
80
82
"The ARIMA model, outliers (except from the outliers in the last year of the sample) and other regression parameters are not re-identified. All parameters of the RegARIMA model are re-estimated. The outliers in the last year of the sample are re-identified. The transformation type remains unchanged.",
81
83
"The ARIMA model and regression parameters, except from outliers) are not re-identified. All parameters of the RegARIMA model are re-estimated. All outliers are re-identified. The transformation type remains unchanged.",
82
84
"Re-identification of the ARIMA model, outliers and regression variables, except from the calendar variables. The transformation type remains unchanged.",
83
-
"Re-identification of the whole RegARIMA model.")),
84
-
.Names = c("Option on JDemetra+",
85
-
"Option for the JWSACruncher", "Short name", "Description"),
86
-
class = "data.frame", row.names = c(NA, -8L))
85
+
"Re-identification of the whole RegARIMA model."),
0 commit comments