View source: R/spec_regarima.R
set_estimate | R Documentation |
Function allowing to define numeric boundaries for estimation and to define a sub-span on which reg-arima (tramo) modelling will be performed (pre-processing step)
set_estimate(
x,
type = c(NA, "All", "From", "To", "Between", "Last", "First", "Excluding"),
d0 = NULL,
d1 = NULL,
n0 = 0,
n1 = 0,
tol = NA,
exact.ml = NA,
unit.root.limit = NA
)
x |
the specification to customize, must be a "SPEC" class object (see details). |
type , d0 , d1 , n0 , n1 |
parameters to specify the sub-span .
|
tol |
a numeric, convergence tolerance. The absolute changes in the log-likelihood function are compared to this value to check for the convergence of the estimation iterations. (The default setting is 0.0000001) |
exact.ml |
(TRAMO specific) |
unit.root.limit |
(TRAMO specific) |
x
specification parameter must be a JD3_X13_SPEC" class object
generated with rjd3x13::x13_spec()
(or "JD3_REGARIMA_SPEC" generated
with rjd3x13::spec_regarima()
or "JD3_TRAMOSEATS_SPEC" generated with
rjd3tramoseats::spec_tramoseats()
or "JD3_TRAMO_SPEC" generated with
rjd3tramoseats::spec_tramo()
).
More in JDemetra+ online documentation: https://jdemetra-new-documentation.netlify.app/
set_basic
, set_arima
# init_spec <- rjd3tramoseats::spec_tramoseats("rsafull")
# new_spec<-set_estimate(init_spec, type= "From", d0 = "2012-01-01", tol = 0.0000002,
# exact.ml = FALSE, unit.root.limit = 0.98)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.