Skip to content

Commit

Permalink
Merge pull request #141 from AQLT/develop
Browse files Browse the repository at this point in the history
README correction
  • Loading branch information
AQLT authored May 6, 2024
2 parents e867893 + 89f3eda commit f8367a0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/init.R
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ rjdemetra_java <- new.env(parent = emptyenv())
rjdemetra_java$clobject <- NULL

check_valid_java_version <- function(){
# Check Java version >= 8 and <= 15
# Check Java version >= 8
jv <- rJava::.jcall("java/lang/System", "S", "getProperty", "java.version")
if(jv < "1.8.0")
return (FALSE)
Expand Down
3 changes: 1 addition & 2 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ options(enable_print_style = FALSE)

RJDemetra is an R interface to JDemetra+, the seasonal adjustment software [officially recommended](https://wayback.archive-it.org/12090/20240102173448/https://cros-legacy.ec.europa.eu/system/files/Jdemetra_%20release.pdf) to the members of the European Statistical System (ESS) and the European System of Central Banks. JDemetra+ implements the two leading seasonal adjustment methods [TRAMO/SEATS+](https://gretl.sourceforge.net/tramo/tramo-seats.html) and [X-12ARIMA/X-13ARIMA-SEATS](https://www.census.gov/data/software/x13as.html).


Besides seasonal adjustment, JDemetra+ bundles other time series models that are useful in the production or analysis of economic statistics, including for instance outlier detection, nowcasting, temporal disaggregation or benchmarking.

For more details on the JDemetra+ software see <https://github.com/jdemetra/jdemetra-app>.
Expand All @@ -35,7 +34,7 @@ RJDemetra offers full access to all options and outputs of JDemetra+.

## Installation

RJDemetra relies on the [rJava](https://CRAN.R-project.org/package=rJava) package and Java SE version between 8 and 15 is required.
RJDemetra relies on the [rJava](https://CRAN.R-project.org/package=rJava) package and Java SE version higher than 8 is required.


```{r, eval = FALSE}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RJDemetra offers full access to all options and outputs of JDemetra+.

RJDemetra relies on the
[rJava](https://CRAN.R-project.org/package=rJava) package and Java SE
version between 8 and 15 is required.
version higher than 8 is required.

``` r
# Install release version from CRAN
Expand Down

0 comments on commit f8367a0

Please sign in to comment.