Skip to content

Commit

Permalink
Add code to check the R package and update DESCRIPTION.
Browse files Browse the repository at this point in the history
  • Loading branch information
tillahoffmann committed Dec 15, 2023
1 parent 185bb3c commit 9fd9267
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/R-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@ jobs:
steps:
- uses: "actions/checkout@v2"
- uses: "r-lib/actions/setup-r@v2"

- uses: r-lib/actions/check-r-package@v2
with:
working-directory: R-package
1 change: 1 addition & 0 deletions R-package/.Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
^gptoolsStan\.Rproj$
^R-package\.Rproj$
^\.Rproj\.user$
vignettes/getting_started
14 changes: 10 additions & 4 deletions R-package/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,17 +1,23 @@
Package: gptoolsStan
Title: Gaussian Processes on Graphs and Lattices in Stan.
Title: Gaussian Processes on Graphs and Lattices in Stan
Version: 0.1
Authors@R:
person("Till", "Hoffmann", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-4403-0722"))
person("Jukka-Pekka", "Onnela", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0001-6613-8668"))
Description: Gaussian processes are flexible distributions to model functional data. Whilst theoretically appealing, they are computationally cumbersome except for small datasets. This package implements two methods for scaling GP inference in Stan: (a) a sparse approximation of the likelihood that is generally applicable and (b) an exact method for regularly spaced data modeled by stationary kernels using fast Fourier methods.
Description: Gaussian processes are flexible distributions to model functional data. Whilst
theoretically appealing, they are computationally cumbersome except for small datasets.
This package implements two methods for scaling GP inference in Stan. First, a sparse
approximation of the likelihood that is generally applicable and, second, an exact method for
regularly spaced data modeled by stationary kernels using fast Fourier methods.
License: BSD-3-Clause
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.2.3
Suggests:
Suggests:
knitr,
rmarkdown
rmarkdown,
cmdstanr
VignetteBuilder: knitr
Remotes: https://mc-stan.org/r-packages/

0 comments on commit 9fd9267

Please sign in to comment.