From 53b5cf3d96530154e4962e01f99914df22877024 Mon Sep 17 00:00:00 2001 From: palatej <8858782+palatej@users.noreply.github.com> Date: Mon, 28 Oct 2024 07:46:14 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20rjdverse?= =?UTF-8?q?/rjd3toolkit@e0603b297eecb147a05d4ee1834f6473f67cb709=20?= =?UTF-8?q?=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgdown.yml | 2 +- reference/add_usrdefvar.html | 18 +++++----- reference/aggregate.html | 2 +- reference/arima_difference.html | 4 +-- reference/arima_model.html | 2 +- reference/arima_properties.html | 2 +- reference/arima_sum.html | 4 +-- reference/autocorrelations.html | 2 +- reference/calendar_td.html | 11 +++--- reference/chained_calendar.html | 6 ++-- reference/data_to_ts.html | 4 +-- reference/differences.html | 2 +- reference/differencing_fast.html | 2 +- reference/do_stationary.html | 2 +- reference/easter_dates.html | 2 +- reference/easter_day.html | 8 +++-- reference/easter_variable.html | 4 +-- reference/fixed_day.html | 4 +-- reference/holidays.html | 25 ++++++------- reference/intervention_variable.html | 16 +++++---- reference/ljungbox.html | 8 ++--- reference/long_term_mean.html | 28 ++++++++------- reference/lp_variable.html | 4 +-- reference/mad.html | 4 +-- reference/modelling_context.html | 14 ++++---- reference/national_calendar.html | 35 ++++++++++--------- reference/normality_tests.html | 8 ++--- reference/outliers_variables.html | 16 +++++---- reference/periodic.dummies.html | 8 ++--- reference/r2jd_calendarts.html | 8 ++--- reference/ramp_variable.html | 4 +-- reference/rangemean_tstat.html | 10 +++--- reference/runstests.html | 8 ++--- reference/sarima_decompose.html | 2 +- reference/sarima_estimate.html | 2 +- reference/sarima_hannan_rissanen.html | 2 +- reference/sarima_random.html | 2 +- reference/seasonality_canovahansen.html | 6 ++-- reference/seasonality_canovahansen_trigs.html | 6 ++-- reference/seasonality_combined.html | 22 ++++++------ reference/seasonality_f.html | 6 ++-- reference/seasonality_friedman.html | 6 ++-- reference/seasonality_kruskalwallis.html | 6 ++-- reference/seasonality_modified_qs.html | 2 +- reference/seasonality_periodogram.html | 6 ++-- reference/seasonality_qs.html | 6 ++-- reference/set_tradingdays.html | 25 ++++++------- reference/special_day.html | 6 ++-- reference/statisticaltest.html | 10 +++--- reference/td.html | 4 +-- reference/td_canovahansen.html | 4 +-- reference/td_timevarying.html | 2 +- reference/tsdata_of.html | 4 +-- reference/ucarima_canonical.html | 6 ++-- reference/ucarima_estimate.html | 12 +++---- reference/ucarima_model.html | 4 +-- reference/ucarima_wk.html | 10 +++--- reference/weighted_calendar.html | 6 ++-- search.json | 2 +- 59 files changed, 234 insertions(+), 212 deletions(-) diff --git a/pkgdown.yml b/pkgdown.yml index 12163f54..8284d5ae 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -2,7 +2,7 @@ pandoc: 3.1.11 pkgdown: 2.1.1 pkgdown_sha: ~ articles: {} -last_built: 2024-10-23T09:26Z +last_built: 2024-10-28T07:45Z urls: reference: https://rjdverse.github.io/rjd3toolkit/reference article: https://rjdverse.github.io/rjd3toolkit/articles diff --git a/reference/add_usrdefvar.html b/reference/add_usrdefvar.html index 558bb834..8bc34e15 100644 --- a/reference/add_usrdefvar.html +++ b/reference/add_usrdefvar.html @@ -108,7 +108,7 @@
"Seasonal": after the decomposition the effect is allocated to the seasonal component, like a Seasonal-outlier
"Series": after the decomposition the effect is allocated to the raw series: \(yc_t=y_t+ effect\)
"Seasonally Adjusted": after the decomposition the effect is allocated to +
"SeasonallyAdjusted": after the decomposition the effect is allocated to the seasonally adjusted series: \(sa_t=T+I+effect\)
# creating one or several external regressors (TS objects),
# which will be gathered in one or several groups
-iv1<-intervention_variable(12, c(2000, 1), 60,
-starts = "2001-01-01", ends = "2001-12-01")
-iv2<- intervention_variable(12, c(2000, 1), 60,
-starts = "2001-01-01", ends = "2001-12-01", delta = 1)
+iv1 <- intervention_variable(12, c(2000, 1), 60,
+ starts = "2001-01-01", ends = "2001-12-01"
+)
+iv2 <- intervention_variable(12, c(2000, 1), 60,
+ starts = "2001-01-01", ends = "2001-12-01", delta = 1
+)
# configuration 1: regressors in the same default group (named "r")
-variables<-list("iv1"=iv1, "iv2"=iv2)
+variables <- list("iv1" = iv1, "iv2" = iv2)
# to use those regressors, input : name=r.iv1 and r.iv2 in add_usrdefvar function
# configuration 2: group names are user-defined
# here: regressors as a list of two groups (lists) reg1 and reg2
-vars<-list(reg1=list(iv1 = iv1),reg2=list(iv2 = iv2) )
+vars <- list(reg1 = list(iv1 = iv1), reg2 = list(iv2 = iv2))
# to use those regressors, input : name=reg1.iv1 and name=reg2.iv2 in add_usrdefvar function
# creating the modelling context
-my_context<-modelling_context(variables=vars)
+my_context <- modelling_context(variables = vars)
# customize a default specification
# init_spec <- rjd3x13::x13_spec("RSA5c")
# regressors have to be added one by one
diff --git a/reference/aggregate.html b/reference/aggregate.html
index 3e5f75f9..a264a600 100644
--- a/reference/aggregate.html
+++ b/reference/aggregate.html
@@ -76,7 +76,7 @@ Value
Examples
- s = ABS$X0.2.09.10.M
+ s <- ABS$X0.2.09.10.M
# Annual sum
aggregate(s, nfreq = 1, conversion = "Sum") # first and last years removed
#> Time Series:
diff --git a/reference/arima_difference.html b/reference/arima_difference.html
index f3dc4bde..77680419 100644
--- a/reference/arima_difference.html
+++ b/reference/arima_difference.html
@@ -64,8 +64,8 @@ Value
Examples
- mod1 = arima_model(delta = c(1,-2,1))
-mod2 = arima_model(variance=.01)
+ mod1 <- arima_model(delta = c(1, -2, 1))
+mod2 <- arima_model(variance = .01)
diff <- arima_difference(mod1, mod2)
sum <- arima_sum(diff, mod2)
# sum should be equal to mod1
diff --git a/reference/arima_model.html b/reference/arima_model.html
index 34232dfb..a96123eb 100644
--- a/reference/arima_model.html
+++ b/reference/arima_model.html
@@ -72,7 +72,7 @@ Value
Examples
-