Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/draft-pdf.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on: [push]

jobs:
paper:
runs-on: ubuntu-latest
name: Paper Draft
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build draft PDF
uses: openjournals/openjournals-draft-action@master
with:
journal: joss
# This should be the path to the paper within your repo.
paper-path: paper.md
- name: Upload
uses: actions/upload-artifact@v1
with:
name: paper
# This is the output path where Pandoc will write the compiled
# PDF. Note, this should be the same directory as the input
# paper.md
path: paper.pdf
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,9 @@ render: ## run R markdown file in /vignettes, open rendered HTML
Rscript -e "rmarkdown::render(paste0('./vignettes/', '$$filename', '.Rmd'))"; \
python3 -c "$$BROWSER_PYSCRIPT" "$$filename.html"

render-paper:
Rscript -e "rmarkdown::render('./paper-v2.md')"

setwd: ## set working directory to current directory
Rscript -e "setwd('.')"

Expand Down
5 changes: 2 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export("ridge2f")
export("ridge")
export("varf")
export("createtrendseason")
export("get_error")
export("getreturns")
export("getsimulations")
export("removenas")
Expand All @@ -54,6 +55,4 @@ export(fitdistr_ahead)
export(quantile_scp)
export(genericforecast)
export(conformalize)
export(mlf)
export(glmthetaf)
export(computeattention)
export(mlf)
41 changes: 0 additions & 41 deletions R/compute_attention.R

This file was deleted.

287 changes: 0 additions & 287 deletions R/glmtheta.R

This file was deleted.

Loading
Loading