Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to 3.3.0 #73

Merged
merged 2 commits into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 34 additions & 33 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
Type: Package
Package: rjd3toolkit
Type: Package
Title: Utility Functions around 'JDemetra+ 3.0'
Version: 3.2.4.9000
Version: 3.3.0
Authors@R: c(
person("Jean", "Palate", , "[email protected]", role = "aut"),
person("Alain", "Quartier-la-Tente", , "[email protected]", role = "aut",
person(given = "Jean",
family = "Palate", role = c("aut"),
email = "[email protected]"),
person(given = "Alain",
family = "Quartier-la-Tente", role = c("aut"),
email = "[email protected]",
comment = c(ORCID = "0000-0001-7890-3857")),
person("Tanguy", "Barthelemy", , "[email protected]", role = c("aut", "cre", "art")),
person("Anna", "Smyk", , "[email protected]", role = "aut")
)
Description: R Interface to 'JDemetra+ 3.x'
(<https://github.com/jdemetra>) time series analysis software. It
provides functions allowing to model time series (create outlier
regressors, user-defined calendar regressors, UCARIMA models...), to
test the presence of trading days or seasonal effects and also to set
specifications in pre-adjustment and benchmarking when using rjd3x13
or rjd3tramoseats.
License: file LICENSE
URL: https://github.com/rjdverse/rjd3toolkit,
https://rjdverse.github.io/rjd3toolkit/
BugReports: https://github.com/rjdverse/rjd3toolkit/issues
person(given = "Tanguy",
family = "Barthelemy", role = c("aut", "cre", "art"),
email ="[email protected]"),
person(given = "Anna",
family = "Smyk", role = c("aut"),
email ="[email protected]")
)
Description: R Interface to 'JDemetra+ 3.x' (<https://github.com/jdemetra>) time series analysis software.
It provides functions allowing to model time series (create outlier regressors, user-defined calendar regressors,
UCARIMA models...), to test the presence of trading days or seasonal effects and also
to set specifications in pre-adjustment and benchmarking when using rjd3x13 or rjd3tramoseats.
Depends:
R (>= 4.1.0)
Imports:
checkmate,
graphics,
methods,
rJava (>= 1.0-6),
RProtoBuf (>= 0.4.20),
stats,
utils
Suggests:
spelling,
knitr
VignetteBuilder:
knitr
Encoding: UTF-8
Language: en-GB
rJava (>= 1.0-6),
checkmate,
methods
SystemRequirements: Java (>= 17)
License: file LICENSE
URL: https://github.com/rjdverse/rjd3toolkit, https://rjdverse.github.io/rjd3toolkit/
LazyData: TRUE
Roxygen: list(markdown = TRUE)
Suggests:
knitr,
rmarkdown,
spelling
RoxygenNote: 7.3.2
SystemRequirements: Java (>= 17)
Roxygen: list(markdown = TRUE)
BugReports: https://github.com/rjdverse/rjd3toolkit/issues
VignetteBuilder: knitr
Encoding: UTF-8
Collate:
'utils.R'
'jd2r.R'
Expand All @@ -67,3 +67,4 @@ Collate:
'timeseries.R'
'variables.R'
'zzz.R'

6 changes: 4 additions & 2 deletions R/timeseries.R
Original file line number Diff line number Diff line change
Expand Up @@ -294,9 +294,11 @@ data_to_ts <- function(s, name) {
#'
#' @examples
#' # Annual series
#' s <- tsdata_of(c(1, 2, 3, 4), c("1990-01-01", "1995-01-01", "1996-01-01", "2000-11-01"))
#' s <- tsdata_of(c(1, 2, 3, 4), c("1990-01-01", "1995-01-01", "1996-01-01",
#' "2000-11-01"))
#' # Quarterly series
#' t <- tsdata_of(c(1, 2, 3, NA, 4), c("1990-01-01", "1995-01-01", "1996-01-01", "2000-08-01", "2000-11-01"))
#' t <- tsdata_of(c(1, 2, 3, NA, 4), c("1990-01-01", "1995-01-01", "1996-01-01",
#' "2000-08-01", "2000-11-01"))
tsdata_of <- function(values, dates) {
jtsdata <- .jcall(
"jdplus/toolkit/base/r/timeseries/TsDataCollector", "Ljdplus/toolkit/base/api/timeseries/TsData;",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 4 additions & 2 deletions man/tsdata_of.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<description>Usage: mvn -Pcopy-jars</description>

<properties>
<jdplus-main.version>3.2.4</jdplus-main.version>
<jdplus-main.version>3.3.0</jdplus-main.version>
</properties>

<dependencies>
Expand Down
Loading