Skip to content

Commit

Permalink
Merge pull request #15 from rjdemetra/develop
Browse files Browse the repository at this point in the history
v2.0.0
  • Loading branch information
palatej authored Dec 12, 2023
2 parents 674af6b + ac0b30c commit 6fbe622
Show file tree
Hide file tree
Showing 54 changed files with 985 additions and 91 deletions.
6 changes: 6 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
^.*\.Rproj$
^\.Rproj\.user$
^README\.Rmd$

TO_DO
^_pkgdown\.yml$
^docs$
^pkgdown$
^\.github$
1 change: 1 addition & 0 deletions .github/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html
56 changes: 56 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [develop]
pull_request:
branches: [develop]
release:
types: [published]
workflow_dispatch:

name: pkgdown

jobs:
pkgdown:
runs-on: ubuntu-latest
# Only restrict concurrency for non-PR jobs
concurrency:
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
permissions:
contents: write
steps:
- uses: actions/checkout@v3

- uses: r-lib/actions/setup-pandoc@v2

- uses: actions/setup-java@v3
with:
distribution: 'zulu' # See 'Supported distributions' for available options
java-version: '17'

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- name: Set up for RProtoBuf
run: sudo apt-get update -y && sudo apt-get install protobuf-compiler libprotobuf-dev libprotoc-dev

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown, local::.
needs: website

- name: Build site
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
shell: Rscript {0}

- name: Deploy to GitHub pages 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4.4.1
with:
clean: false
branch: gh-pages
folder: docs
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@
.Rhistory
.RData
.Ruserdata

TO_DO
docs
12 changes: 8 additions & 4 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: rjd3highfreq
Type: Package
Title: Seasonal Adjustment of High Frequency Data with 'JDemetra+ 3.0'
Version: 1.0.0
Version: 2.0.0
Authors@R: c(
person("Jean", "Palate", role = c("aut", "cre"),
email = "jean.palate@nbb.be"))
Expand All @@ -13,13 +13,16 @@ Depends:
Imports:
rJava (>= 1.0-6),
RProtoBuf (>= 0.4.17),
rjd3toolkit (>= 3.0.1),
rjd3sts (>= 1.0.1),
rjd3toolkit (>= 3.2.1),
rjd3sts (>= 2.0.0),
checkmate,
methods
Remotes:
github::rjdemetra/rjd3toolkit,
github::rjdemetra/rjd3sts
SystemRequirements: Java JRE 17 or higher
License: EUPL
URL: https://github.com/rjdemetra/rjd3highfreq
URL: https://github.com/rjdemetra/rjd3highfreq, https://rjdemetra.github.io/rjd3highfreq/
LazyData: TRUE
Suggests:
knitr,
Expand All @@ -30,5 +33,6 @@ Encoding: UTF-8
Collate:
'utils.R'
'jd3_fractionalairline.R'
'plot.R'
'print.R'
'zzz.R'
2 changes: 2 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated by roxygen2: do not edit by hand

S3method(plot,JDFractionalAirlineDecomposition)
S3method(plot,JDFractionalAirlineEstimation)
S3method(print,JDFractionalAirlineDecomposition)
S3method(print,JDFractionalAirlineEstimation)
export(fractionalAirlineDecomposition)
Expand Down
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# rjd3highfreq dev version


* New plots for `JDFractionalAirlineDecomposition` and `JDFractionalAirlineEstimation`
* Update prints
* Add documentation for plots and prints
* Update readme


# rjd3highfreq 1.0.1

First commit
Loading

0 comments on commit 6fbe622

Please sign in to comment.