Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Palate Jean committed Jul 6, 2023
1 parent 56917e1 commit 99b1207
Show file tree
Hide file tree
Showing 23 changed files with 859 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.Rproj.user
.Rhistory
.RData
.Ruserdata
34 changes: 34 additions & 0 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Package: rjd3highfreq
Type: Package
Title: Seasonal Adjustment of High Frequency Data with 'JDemetra+ 3.0'
Version: 1.0.0
Authors@R: c(
person("Jean", "Palate", role = c("aut", "cre"),
email = "jean.palate@nbb.be"))
Description: Interface around 'JDemetra+ 3.x' (<https://github.com/jdemetra/jdemetra-core>) seasonal adjustment software, STACE project.
It offers access to several functions around the seasonal adjustment of high frequency data time series:
STL, Loess, fractional airline and extension of X-11.
Depends:
R (>= 3.6.0)
Imports:
rJava (>= 1.0-6),
RProtoBuf (>= 0.4.17),
rjd3toolkit (>= 3.0.1),
rjd3sts (>= 1.0.1),
checkmate,
methods
SystemRequirements: Java JRE 17 or higher
License: EUPL
URL: https://github.com/palatej/rjd3highfreq
LazyData: TRUE
Suggests:
knitr,
rmarkdown
RoxygenNote: 7.2.3
BugReports: https://github.com/palatej/rjd3highfreq/issues
Encoding: UTF-8
Collate:
'utils.R'
'jd3_fractionalairline.R'
'print.R'
'zzz.R'
34 changes: 34 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Generated by roxygen2: do not edit by hand

S3method(print,JDFractionalAirlineDecomposition)
S3method(print,JDFractionalAirlineEstimation)
export(fractionalAirlineDecomposition)
export(fractionalAirlineDecomposition_raw)
export(fractionalAirlineDecomposition_ssf)
export(fractionalAirlineEstimation)
export(jd2r_fractionalAirlineDecomposition)
export(jd2r_multiAirlineDecomposition)
export(multiAirlineDecomposition)
export(multiAirlineDecomposition_raw)
export(multiAirlineDecomposition_ssf)
import(rjd3sts)
importFrom(RProtoBuf,readProtoFiles2)
importFrom(methods,new)
importFrom(rJava,.jarray)
importFrom(rJava,.jcall)
importFrom(rJava,.jcast)
importFrom(rJava,.jcastToArray)
importFrom(rJava,.jclass)
importFrom(rJava,.jevalArray)
importFrom(rJava,.jinstanceof)
importFrom(rJava,.jnew)
importFrom(rJava,.jnull)
importFrom(rJava,.jpackage)
importFrom(rJava,is.jnull)
importFrom(rjd3toolkit,dictionary)
importFrom(rjd3toolkit,result)
importFrom(stats,frequency)
importFrom(stats,is.ts)
importFrom(stats,pt)
importFrom(stats,start)
importFrom(stats,ts)
Loading

0 comments on commit 99b1207

Please sign in to comment.