The jagstargets R package
The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS - Published in JOSS (2021)
Science Score: 93.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 2 DOI reference(s) in README and JOSS metadata -
✓Academic publication links
Links to: joss.theoj.org, zenodo.org -
○Committers with academic emails
-
○Institutional organization owner
-
✓JOSS paper metadata
Published in Journal of Open Source Software
Keywords
bayesian
high-performance-computing
jags
make
r
r-targetopia
reproducibility
rjags
rstats
rstats-package
statistics
targets
Keywords from Contributors
drake
makefile
ropensci
Last synced: 4 months ago
·
JSON representation
Repository
Reproducible Bayesian data analysis pipelines with targets and JAGS
Basic Info
- Host: GitHub
- Owner: ropensci
- License: other
- Language: R
- Default Branch: main
- Homepage: https://docs.ropensci.org/jagstargets
- Size: 613 KB
Statistics
- Stars: 11
- Watchers: 3
- Forks: 7
- Open Issues: 0
- Releases: 11
Topics
bayesian
high-performance-computing
jags
make
r
r-targetopia
reproducibility
rjags
rstats
rstats-package
statistics
targets
Created about 5 years ago
· Last pushed about 1 year ago
Metadata Files
Readme
Changelog
Contributing
License
Codemeta
Zenodo
README.Rmd
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# jagstargets
[](https://joss.theoj.org/papers/10.21105/joss.03877)
[](https://github.com/ropensci/software-review/issues/425)
[](https://zenodo.org/badge/latestdoi/321076424)
[](https://wlandau.github.io/targetopia/)
[](https://cran.r-project.org/package=jagstargets)
[](https://www.repostatus.org/#active)
[](https://github.com/ropensci/jagstargets/actions?query=workflow%3Acheck)
[](https://app.codecov.io/gh/ropensci/gittargets)
[](https://github.com/ropensci/jagstargets/actions?query=workflow%3Alint)
Bayesian data analysis usually incurs long runtimes and cumbersome custom code, and the process of prototyping and deploying custom [JAGS](https://mcmc-jags.sourceforge.io) models can become a daunting software engineering challenge. To ease this burden, the `jagstargets` R package creates [JAGS](https://mcmc-jags.sourceforge.io) pipelines that are concise, efficient, scalable, and tailored to the needs of Bayesian statisticians. Leveraging [`targets`](https://docs.ropensci.org/targets/), `jagstargets` pipelines automatically parallelize the computation and skip expensive steps when the results are already up to date. Minimal custom user-side code is required, and there is no need to manually configure branching, so `jagstargets` is easier to use than [`targets`](https://docs.ropensci.org/targets/) and [`R2jags`](https://CRAN.R-project.org/package=R2jags) directly.
## Prerequisites
1. The [prerequisites of the `targets` R package](https://docs.ropensci.org/targets/#prerequisites).
1. Basic familiarity with [`targets`](https://docs.ropensci.org/targets/): watch minutes 7 through 40 of [this video](https://youtu.be/Gqn7Xn4d5NI?t=439), then read [this chapter](https://books.ropensci.org/targets/walkthrough.html) of the [user manual](https://books.ropensci.org/targets/).
1. Familiarity with Bayesian Statistics and [JAGS](https://mcmc-jags.sourceforge.io/). Prior knowledge of [`rjags`](https://cran.r-project.org/package=rjags) or [`R2jags`](https://cran.r-project.org/package=R2jags) helps.
## How to get started
Read the `jagstargets` [introductory vignette](https://docs.ropensci.org/jagstargets/articles/introduction.html), and then use as a reference while constructing your own workflows. If you need to analyze large collections of simulated datasets, please consult the [simulation vignette](https://docs.ropensci.org/jagstargets/articles/simulation.html).
## Installation
`jagstargets` requires the user to install [JAGS](https://mcmc-jags.sourceforge.io/), [`rjags`](https://CRAN.R-project.org/package=rjags), and [`R2jags`](https://CRAN.R-project.org/package=R2jags) beforehand. You can install JAGS from , and you can install the rest from CRAN.
```{r, eval = FALSE}
install.packages(c("rjags", "R2jags"))
```
Then, install the latest release from CRAN.
```{r, eval = FALSE}
install.packages("jagstargets")
```
Alternatively, install the GitHub development version to access the latest features and patches.
```{r, eval = FALSE}
install.packages("remotes")
remotes::install_github("ropensci/jagstargets")
```
## Usage
Begin with one or more models: for example, the simple regression model below with response variable $y$ and covariate $x$.
Next, write a JAGS model file for each model like the `model.jags` file below.
```jags
model {
for (i in 1:n) {
y[i] ~ dnorm(x[i] * beta, 1)
}
beta ~ dnorm(0, 1)
}
```
To begin a reproducible analysis pipeline with this model, write a [`_targets.R` file](https://books.ropensci.org/targets/walkthrough.html) that loads your packages, defines a function to generate JAGS data, and lists a pipeline of targets. The target list can call target factories like [`tar_jags()`](https://docs.ropensci.org/jagstargets/reference/tar_jags.html) as well as ordinary targets with [`tar_target()`](https://docs.ropensci.org/targets/reference/tar_target.html). The following minimal example is simple enough to contain entirely within the `_targets.R` file, but for larger projects, you may wish to store functions in separate files as in the [`targets-stan`](https://github.com/wlandau/targets-stan) example.
```{r, eval = FALSE}
# _targets.R
library(targets)
library(jagstargets)
generate_data <- function() {
true_beta <- stats::rnorm(n = 1, mean = 0, sd = 1)
x <- seq(from = -1, to = 1, length.out = n)
y <- stats::rnorm(n, x * true_beta, 1)
out <- list(n = n, x = x, y = y, true_beta = true_beta)
}
list(
tar_jags(
example,
jags_files = "model.jags", # You provide this file.
parameters.to.save = "beta",
data = generate_data()
)
)
```
Run [`tar_visnetwork()`](https://docs.ropensci.org/targets/reference/tar_visnetwork.html) to check `_targets.R` for correctness, then call [`tar_make()`](https://docs.ropensci.org/targets/reference/tar_make.html) to run the pipeline. Access the results using [`tar_read()`](https://docs.ropensci.org/targets/reference/tar_read.html), e.g. `tar_read(tar_read(example_summary_x)`. Visit the [introductory vignette](https://docs.ropensci.org/jagstargets/articles/introduction.html) to read more about this example.
## How the package works
`jagstargets` supports specialized [target factories](https://ropensci.org/blog/2021/02/03/targets/#target-factories) that create ensembles of [target objects](https://docs.ropensci.org/targets/reference/tar_target.html) for [`R2jags`](https://CRAN.R-project.org/package=R2jags) workflows. These [target factories](https://ropensci.org/blog/2021/02/03/targets/#target-factories) abstract away the details of [`targets`](https://docs.ropensci.org/targets/) and [`R2jags`](https://CRAN.R-project.org/package=R2jags) and make both packages easier to use. For details, please read the [introductory vignette](https://docs.ropensci.org/jagstargets/articles/introduction.html).
## Help
Please read the `targets` help guide at to learn how to ask for help.
If you have trouble using `jagstargets`, you can ask for help in the [GitHub discussions forum](https://github.com/ropensci/jagstargets/discussions/categories/help). Because the purpose of `jagstargets` is to combine [`targets`](https://docs.ropensci.org/targets/) and [`R2jags`](https://CRAN.R-project.org/package=R2jags), your issue may have something to do with one of the latter two packages, a [dependency of `targets`](https://github.com/ropensci/targets/blob/4e3ef2a6c986f558a25e544416f480fc01236b6b/DESCRIPTION#L49-L88), or [`R2jags`](https://CRAN.R-project.org/package=R2jags) itself. When you troubleshoot, peel back as many layers as possible to isolate the problem. For example, if the issue comes from [`R2jags`](https://CRAN.R-project.org/package=R2jags), create a [reproducible example](https://reprex.tidyverse.org) that directly invokes [`R2jags`](https://CRAN.R-project.org/package=R2jags) without invoking `jagstargets`. The GitHub discussion and issue forums of those packages are great resources.
## Participation
Development is a community effort, and we welcome discussion and contribution. By participating in this project, you agree to abide by the [code of conduct](https://ropensci.org/code-of-conduct/) and the [contributing guide](https://github.com/ropensci/jagstargets/blob/main/CONTRIBUTING.md).
## Citation
```{r, warning = FALSE}
citation("jagstargets")
```
Owner
- Name: rOpenSci
- Login: ropensci
- Kind: organization
- Email: info@ropensci.org
- Location: Berkeley, CA
- Website: https://ropensci.org/
- Twitter: rOpenSci
- Repositories: 307
- Profile: https://github.com/ropensci
JOSS Publication
The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS
Published
December 01, 2021
Volume 6, Issue 68, Page 3877
Tags
reproducibility high-performance computing pipeline workflow Make Bayesian JAGSCodeMeta (codemeta.json)
{
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
"@type": "SoftwareSourceCode",
"identifier": "jagstargets",
"description": "Bayesian data analysis usually incurs long runtimes and cumbersome custom code. A pipeline toolkit tailored to Bayesian statisticians, the 'jagstargets' R package is leverages 'targets' and 'R2jags' to ease this burden. 'jagstargets' makes it super easy to set up scalable JAGS pipelines that automatically parallelize the computation and skip expensive steps when the results are already up to date. Minimal custom code is required, and there is no need to manually configure branching, so usage is much easier than 'targets' alone. For the underlying methodology, please refer to the documentation of 'targets' <doi:10.21105/joss.02959> and 'JAGS' (Plummer 2003) <https://www.r-project.org/conferences/DSC-2003/Proceedings/Plummer.pdf>.",
"name": "jagstargets: Targets for JAGS Pipelines",
"relatedLink": "https://docs.ropensci.org/jagstargets/",
"codeRepository": "https://github.com/ropensci/jagstargets",
"issueTracker": "https://github.com/ropensci/jagstargets/issues",
"license": "https://spdx.org/licenses/MIT",
"version": "1.1.0.9002",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.3.2 (2023-10-31)",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"author": [
{
"@type": "Person",
"givenName": [
"William",
"Michael"
],
"familyName": "Landau",
"email": "will.landau.oss@gmail.com",
"@id": "https://orcid.org/0000-0003-1878-3253"
}
],
"copyrightHolder": [
{
"@type": "Organization",
"name": "Eli Lilly and Company"
}
],
"maintainer": [
{
"@type": "Person",
"givenName": [
"William",
"Michael"
],
"familyName": "Landau",
"email": "will.landau.oss@gmail.com",
"@id": "https://orcid.org/0000-0003-1878-3253"
}
],
"softwareSuggestions": [
{
"@type": "SoftwareApplication",
"identifier": "dplyr",
"name": "dplyr",
"version": ">= 1.0.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=dplyr"
},
{
"@type": "SoftwareApplication",
"identifier": "fs",
"name": "fs",
"version": ">= 1.5.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=fs"
},
{
"@type": "SoftwareApplication",
"identifier": "knitr",
"name": "knitr",
"version": ">= 1.30",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=knitr"
},
{
"@type": "SoftwareApplication",
"identifier": "R.utils",
"name": "R.utils",
"version": ">= 2.10.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=R.utils"
},
{
"@type": "SoftwareApplication",
"identifier": "rmarkdown",
"name": "rmarkdown",
"version": ">= 2.3",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rmarkdown"
},
{
"@type": "SoftwareApplication",
"identifier": "testthat",
"name": "testthat",
"version": ">= 3.0.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=testthat"
},
{
"@type": "SoftwareApplication",
"identifier": "tidyr",
"name": "tidyr",
"version": ">= 1.1.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tidyr"
},
{
"@type": "SoftwareApplication",
"identifier": "visNetwork",
"name": "visNetwork",
"version": ">= 2.0.9",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=visNetwork"
}
],
"softwareRequirements": {
"1": {
"@type": "SoftwareApplication",
"identifier": "R",
"name": "R",
"version": ">= 3.5.0"
},
"2": {
"@type": "SoftwareApplication",
"identifier": "coda",
"name": "coda",
"version": ">= 0.19.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=coda"
},
"3": {
"@type": "SoftwareApplication",
"identifier": "fst",
"name": "fst",
"version": ">= 0.9.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=fst"
},
"4": {
"@type": "SoftwareApplication",
"identifier": "posterior",
"name": "posterior",
"version": ">= 1.0.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=posterior"
},
"5": {
"@type": "SoftwareApplication",
"identifier": "purrr",
"name": "purrr",
"version": ">= 0.3.4",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=purrr"
},
"6": {
"@type": "SoftwareApplication",
"identifier": "qs",
"name": "qs",
"version": ">= 0.23.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=qs"
},
"7": {
"@type": "SoftwareApplication",
"identifier": "R2jags",
"name": "R2jags",
"version": ">= 0.6.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=R2jags"
},
"8": {
"@type": "SoftwareApplication",
"identifier": "rjags",
"name": "rjags",
"version": ">= 4.10",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rjags"
},
"9": {
"@type": "SoftwareApplication",
"identifier": "rlang",
"name": "rlang",
"version": ">= 0.4.10",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=rlang"
},
"10": {
"@type": "SoftwareApplication",
"identifier": "secretbase",
"name": "secretbase",
"version": ">= 0.4.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=secretbase"
},
"11": {
"@type": "SoftwareApplication",
"identifier": "stats",
"name": "stats"
},
"12": {
"@type": "SoftwareApplication",
"identifier": "targets",
"name": "targets",
"version": ">= 1.6.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=targets"
},
"13": {
"@type": "SoftwareApplication",
"identifier": "tarchetypes",
"name": "tarchetypes",
"version": ">= 0.8.0",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tarchetypes"
},
"14": {
"@type": "SoftwareApplication",
"identifier": "tibble",
"name": "tibble",
"version": ">= 3.0.1",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tibble"
},
"15": {
"@type": "SoftwareApplication",
"identifier": "tidyselect",
"name": "tidyselect",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=tidyselect"
},
"16": {
"@type": "SoftwareApplication",
"identifier": "tools",
"name": "tools"
},
"17": {
"@type": "SoftwareApplication",
"identifier": "utils",
"name": "utils"
},
"18": {
"@type": "SoftwareApplication",
"identifier": "withr",
"name": "withr",
"version": ">= 2.1.2",
"provider": {
"@id": "https://cran.r-project.org",
"@type": "Organization",
"name": "Comprehensive R Archive Network (CRAN)",
"url": "https://cran.r-project.org"
},
"sameAs": "https://CRAN.R-project.org/package=withr"
},
"SystemRequirements": "JAGS 4.x.y (https://mcmc-jags.sourceforge.net)"
},
"fileSize": "266.732KB",
"citation": [
{
"@type": "ScholarlyArticle",
"datePublished": "2021",
"author": [
{
"@type": "Person",
"givenName": [
"William",
"Michael"
],
"familyName": "Landau"
}
],
"name": "The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS",
"url": "https://doi.org/10.21105/joss.03877",
"pagination": "3877",
"isPartOf": {
"@type": "PublicationIssue",
"issueNumber": "68",
"datePublished": "2021",
"isPartOf": {
"@type": [
"PublicationVolume",
"Periodical"
],
"volumeNumber": "6",
"name": "Journal of Open Source Software"
}
}
}
],
"releaseNotes": "https://github.com/ropensci/jagstargets/blob/master/NEWS.md",
"readme": "https://github.com/ropensci/jagstargets/blob/main/README.md",
"contIntegration": [
"https://github.com/ropensci/jagstargets/actions?query=workflow%3Acheck",
"https://app.codecov.io/gh/ropensci/gittargets",
"https://github.com/ropensci/jagstargets/actions?query=workflow%3Alint"
],
"developmentStatus": "https://www.repostatus.org/#active",
"review": {
"@type": "Review",
"url": "https://github.com/ropensci/software-review/issues/425",
"provider": "https://ropensci.org"
},
"keywords": [
"r",
"rstats",
"reproducibility",
"high-performance-computing",
"bayesian",
"jags",
"rjags",
"statistics",
"targets",
"make",
"rstats-package",
"r-targetopia"
]
}
GitHub Events
Total
- Release event: 2
- Watch event: 2
- Push event: 6
- Fork event: 1
- Create event: 2
Last Year
- Release event: 2
- Watch event: 2
- Push event: 6
- Fork event: 1
- Create event: 2
Committers
Last synced: 5 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| wlandau | w****u@g****m | 228 |
| wlandau | w****s@g****m | 9 |
| Maëlle Salmon | m****n@y****e | 3 |
| Jeroen Ooms | j****s@g****m | 1 |
| C198353-CA | 3****A | 1 |
| David Lawrence Miller | g****b@n****t | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 4 months ago
All Time
- Total issues: 23
- Total pull requests: 8
- Average time to close issues: 28 days
- Average time to close pull requests: about 12 hours
- Total issue authors: 6
- Total pull request authors: 5
- Average comments per issue: 1.13
- Average comments per pull request: 0.63
- Merged pull requests: 8
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- wlandau (16)
- dill (3)
- JonasMoss (1)
- rich-payne (1)
- sachsmc (1)
- AoifeHughes (1)
Pull Request Authors
- maelle (5)
- wlandau-lilly (2)
- dill (1)
- wlandau (1)
- jeroen (1)
Top Labels
Issue Labels
type: new feature (6)
type: bug (2)
topic: documentation (2)
type: maintenance (1)
order: 3 (1)
order: 2 (1)
order: 1 (1)
order: sooner (1)
Pull Request Labels
Packages
- Total packages: 1
-
Total downloads:
- cran 721 last-month
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 8
- Total maintainers: 1
cran.r-project.org: jagstargets
Targets for JAGS Pipelines
- Homepage: https://docs.ropensci.org/jagstargets/
- Documentation: http://cran.r-project.org/web/packages/jagstargets/jagstargets.pdf
- License: MIT + file LICENSE
-
Latest release: 1.2.2
published about 1 year ago
Rankings
Forks count: 12.8%
Stargazers count: 17.9%
Average: 28.1%
Dependent packages count: 29.8%
Dependent repos count: 35.5%
Downloads: 44.5%
Maintainers (1)
Last synced:
4 months ago
Dependencies
DESCRIPTION
cran
- R >= 3.5.0 depends
- R2jags >= 0.6.1 imports
- coda >= 0.19.4 imports
- digest >= 0.6.25 imports
- fst >= 0.9.2 imports
- posterior >= 1.0.1 imports
- purrr >= 0.3.4 imports
- qs >= 0.23.2 imports
- rjags >= 4.10 imports
- rlang >= 0.4.10 imports
- stats * imports
- tarchetypes >= 0.6.0 imports
- targets >= 0.12.0 imports
- tibble >= 3.0.1 imports
- tools * imports
- utils * imports
- withr >= 2.1.2 imports
- R.utils >= 2.10.1 suggests
- dplyr >= 1.0.2 suggests
- fs >= 1.5.0 suggests
- knitr >= 1.30 suggests
- rmarkdown >= 2.3 suggests
- testthat >= 3.0.0 suggests
- tidyr >= 1.1.2 suggests
- visNetwork >= 2.0.9 suggests
.github/workflows/check.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/check-r-package v2 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/cover.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/lint.yaml
actions
- actions/checkout v3 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-r-dependencies v2 composite
