-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
49 changed files
with
1,401 additions
and
203 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,27 @@ | ||
^appveyor\.yml$ | ||
^docs$ | ||
^_pkgdown\.yml$ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^.lintr$ | ||
^README.Rmd$ | ||
|
||
^\.git$ | ||
^\.github$ | ||
|
||
^README\.Rmd$ | ||
^README-.*\.png$ | ||
.travis.yml | ||
^pkgdown$ | ||
|
||
^Meta$ | ||
^docs$ | ||
^doc$ | ||
^pkgdown$ | ||
^_pkgdown\.yml$ | ||
|
||
^\.lintr$ | ||
|
||
^appveyor\.yml$ | ||
.travis.yml | ||
|
||
cran-comments.md | ||
TODO.R | ||
|
||
^\.DS_Store$ | ||
|
||
^revdep$ | ||
workspace | ||
workspace.xml | ||
R/test_X11.R | ||
^\.github$ | ||
^LICENSE$ | ||
^reconf\.sh$ | ||
^pom\.xml$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,58 @@ | ||
.Rproj.user | ||
# History files | ||
.Rhistory | ||
.Rapp.history | ||
|
||
# Session Data files | ||
.RData | ||
.RDataTmp | ||
|
||
# User-specific files | ||
.Ruserdata | ||
|
||
# Example code in package build process | ||
*-Ex.R | ||
|
||
# Output files from R CMD build | ||
/*.tar.gz | ||
|
||
# Output files from R CMD check | ||
/*.Rcheck/ | ||
|
||
# RStudio files | ||
.Rproj.user/ | ||
|
||
# produced vignettes | ||
vignettes/*.html | ||
vignettes/*.pdf | ||
Meta/ | ||
inst/doc/ | ||
doc/ | ||
|
||
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3 | ||
.httr-oauth | ||
|
||
# knitr and R markdown default cache directories | ||
*_cache/ | ||
/cache/ | ||
|
||
# Temporary files created by R markdown | ||
*.utf8.md | ||
*.knit.md | ||
|
||
# R Environment Variables | ||
.Renviron | ||
|
||
# pkgdown site | ||
docs/ | ||
|
||
# translation temp files | ||
po/*~ | ||
|
||
# RStudio Connect folder | ||
rsconnect/ | ||
|
||
# Hidden file from mac-os | ||
.DS_Store | ||
workspace | ||
workspace.xml | ||
inst/doc | ||
docs | ||
|
||
# produced README.html | ||
README.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,41 @@ | ||
Package: rjd3filters | ||
Type: Package | ||
Title: Trend-Cycle Extraction with Linear Filters | ||
Version: 2.1.0 | ||
Title: Trend-Cycle Extraction with Linear Filters based on JDemetra+ v3.x | ||
Version: 2.1.1 | ||
Authors@R: c( | ||
person("Jean", "Palate", role = c("aut", "cre"), | ||
email = "[email protected]"), | ||
person("Alain", "Quartier-la-Tente", role = c("aut"), | ||
person("Jean", "Palate", role = c("aut"), | ||
email = "[email protected]"), | ||
person("Alain", "Quartier-la-Tente", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
comment = c(ORCID = "0000-0001-7890-3857")) | ||
) | ||
comment = c(ORCID = "0000-0001-7890-3857")), | ||
person("Tanguy", "Barthelemy", role = c("ctb", "art"), | ||
email ="[email protected]"), | ||
person("Anna", "Smyk", role = c("ctb"), | ||
email ="[email protected]") | ||
) | ||
Description: This package provides functions to build and apply symmetric | ||
and asymmetric moving averages (= linear filters) for trend-cycle extraction. | ||
In particular, it implements several moderns approaches for real-time estimates | ||
In particular, it implements several modern approaches for real-time estimates | ||
from the viewpoint of revisions and time delay in detecting turning points. | ||
It includes the local polynomial approach of Proietti and Luati (2008), the | ||
Reproducing Kernel Hilbert Space (RKHS) of Dagum and Bianconcini (2008) and | ||
the Fidelity-Smoothness-Timeliness approach of Grun-Rehomme, Guggemos, and Ladiray (2018). | ||
It is based on Java libraries developped around 'JDemetra+' (<https://github.com/jdemetra/jdemetra-app>), | ||
the seasonal adjustment software officially recommended to the members | ||
of the European Statistical System (ESS) and the European System of Central Banks. | ||
It is based on Java libraries developped in 'JDemetra+' (<https://github.com/jdemetra>), time series analysis software. | ||
Depends: | ||
R (>= 3.6.0) | ||
R (>= 4.1.0) | ||
Imports: | ||
rJava (>= 1.0-6), | ||
methods, | ||
MASS, | ||
graphics, | ||
stats, | ||
rjd3toolkit (>= 3.2.2) | ||
Remotes: | ||
github::rjdemetra/rjd3toolkit | ||
Remotes: | ||
github::rjdverse/rjd3toolkit@*release | ||
SystemRequirements: Java (>= 17) | ||
License: EUPL | ||
LazyData: TRUE | ||
URL: https://github.com/rjdemetra/rjd3filters, https://rjdemetra.github.io/rjd3filters/ | ||
URL: https://github.com/rjdverse/rjd3filters, https://rjdverse.github.io/rjd3filters/ | ||
Suggests: | ||
knitr, | ||
rmarkdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.