Skip to content

Commit

Permalink
Merge pull request #11 from clemasso/v2
Browse files Browse the repository at this point in the history
v2.0.0
  • Loading branch information
clemasso authored Jun 4, 2024
2 parents d7d2672 + 0c4be74 commit b1f803c
Show file tree
Hide file tree
Showing 34 changed files with 1,514 additions and 940 deletions.
28 changes: 14 additions & 14 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
Package: rjd3nowcasting
Type: Package
Title: Nowcasting with 'JDemetra+ 3.x'
Version: 1.0.0
Title: Nowcasting with 'JDemetra+ 3.0'
Version: 2.0.0
Authors@R:
person(given = "Corentin",
family = "Lemasson",
role = c("aut", "cre"),
email = "[email protected]")
Description: R Interface to 'JDemetra+ 3.x' (<https://github.com/jdemetra>) time series analysis software.
It defines and estimates a Dynamic Factor Model with the
purpose of Nowcasting.
Description: Interface around 'JDemetra+ 3.x'
(<https://github.com/jdemetra/jdplus-nowcasting>), TSACE project.
It defines and estimates Dynamic Factor Models with the
purpose of Nowcasting. News analysis is included in this second version.
Depends:
R (>= 4.1.0)
Imports:
rJava (>= 1.0-6),
rjd3toolkit (>= 3.2.1)
rjd3toolkit (>= 3.2.2)
Remotes:
github::rjdverse/rjd3toolkit
github::rjdverse/rjd3nowcasting
SystemRequirements: Java (>= 17)
License: EUPL
URL: https://github.com/rjdverse/rjd3nowcasting, https://rjdverse.github.io/rjd3nowcasting/
LazyData: TRUE
Suggests:
knitr,
rmarkdown
Roxygen: list(markdown = TRUE)
URL: https://github.com/rjdverse/rjd3nowcasting
BugReports: https://github.com/rjdverse/rjd3nowcasting/issues
Encoding: UTF-8
Collate:
'estimation.R'
'news.R'
'results.R'
'zzz.R'
RoxygenNote: 7.3.1
RoxygenNote: 7.2.3
Suggests:
knitr,
rmarkdown
VignetteBuilder: knitr
19 changes: 10 additions & 9 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
# Generated by roxygen2: do not edit by hand

S3method(plot,JD3_SsfModelEstimation)
S3method(print,JD3_SsfModelEstimation)
S3method(summary,JD3_SsfModelEstimation)
S3method(plot,JD3_DfmForecasts)
S3method(plot,JD3_DfmNews)
S3method(print,JD3_DfmEstimates)
S3method(print,JD3_DfmForecasts)
S3method(print,JD3_DfmNews)
S3method(print,JD3_DfmResults)
S3method(summary,JD3_DfmNews)
export(create_model)
export(estimate_em)
export(estimate_ml)
export(estimate_pca)
export(get_factors)
export(get_forecasts)
export(get_loglikelihood)
export(get_parameters)
export(get_preprocessing)
export(get_residuals)
export(model)
export(get_news)
export(get_results)
import(rJava)
5 changes: 3 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,14 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.0] - 2024-06-04

## [1.0.0] - 2023-12-21

### Changed

* update version number


[Unreleased]: https://github.com/rjdverse/rjd3nowcasting/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/rjdverse/rjd3nowcasting/compare/v2.0.0...HEAD
[2.0.0]: https://github.com/rjdverse/rjd3nowcasting/compare/v1.0.0...v2.0.0
[1.0.0]: https://github.com/rjdverse/rjd3nowcasting/releases/tag/v1.0.0
Loading

0 comments on commit b1f803c

Please sign in to comment.