Skip to content

Commit

Permalink
Cite paper
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau-lilly committed Dec 1, 2021
1 parent 23c2b3f commit ec7db42
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 12 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Description: Bayesian data analysis usually incurs long runtimes
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>.
Version: 1.0.0
Version: 1.0.1
License: MIT + file LICENSE
URL: https://docs.ropensci.org/jagstargets/, https://github.com/ropensci/jagstargets
BugReports: https://github.com/ropensci/jagstargets/issues
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# jagstargets 1.0.1

* Reference JOSS paper.

# jagstargets 1.0.0

* Add Zenodo and badge.
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ knitr::opts_chunk$set(
[![ropensci](https://badges.ropensci.org/425_status.svg)](https://github.com/ropensci/software-review/issues/425)
[![DOI](https://zenodo.org/badge/321076424.svg)](https://zenodo.org/badge/latestdoi/321076424)
[![R Targetopia](https://img.shields.io/badge/R_Targetopia-member-blue?style=flat&labelColor=gray)](https://wlandau.github.io/targetopia/)
<!--[![cran](https://www.r-pkg.org/badges/version/jagstargets)](https://cran.r-project.org/package=jagstargets)-->
[![cran](https://www.r-pkg.org/badges/version/jagstargets)](https://cran.r-project.org/package=jagstargets)
[![status](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![check](https://github.com/ropensci/jagstargets/workflows/check/badge.svg)](https://github.com/ropensci/jagstargets/actions?query=workflow%3Acheck)
[![codecov](https://codecov.io/gh/ropensci/jagstargets/branch/main/graph/badge.svg?token=3T5DlLwUVl)](https://app.codecov.io/gh/ropensci/gittargets)
Expand Down
24 changes: 14 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
[![DOI](https://zenodo.org/badge/321076424.svg)](https://zenodo.org/badge/latestdoi/321076424)
[![R
Targetopia](https://img.shields.io/badge/R_Targetopia-member-blue?style=flat&labelColor=gray)](https://wlandau.github.io/targetopia/)
<!--[![cran](https://www.r-pkg.org/badges/version/jagstargets)](https://cran.r-project.org/package=jagstargets)-->
[![cran](https://www.r-pkg.org/badges/version/jagstargets)](https://cran.r-project.org/package=jagstargets)
[![status](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![check](https://github.com/ropensci/jagstargets/workflows/check/badge.svg)](https://github.com/ropensci/jagstargets/actions?query=workflow%3Acheck)
[![codecov](https://codecov.io/gh/ropensci/jagstargets/branch/main/graph/badge.svg?token=3T5DlLwUVl)](https://app.codecov.io/gh/ropensci/jagstargets)
[![codecov](https://codecov.io/gh/ropensci/jagstargets/branch/main/graph/badge.svg?token=3T5DlLwUVl)](https://app.codecov.io/gh/ropensci/gittargets)
[![lint](https://github.com/ropensci/jagstargets/workflows/lint/badge.svg)](https://github.com/ropensci/jagstargets/actions?query=workflow%3Alint)

Bayesian data analysis usually incurs long runtimes and cumbersome
Expand Down Expand Up @@ -192,19 +192,23 @@ guide](https://github.com/ropensci/jagstargets/blob/main/CONTRIBUTING.md).
``` r
citation("jagstargets")
#>
#> To cite package 'jagstargets' in publications use:
#> To cite jagstargets in publications use:
#>
#> William Michael Landau (2021). jagstargets: Targets for JAGS
#> Workflows. https://docs.ropensci.org/jagstargets/,
#> https://github.com/ropensci/jagstargets.
#> Landau, W. M., (2021). The jagstargets R package: a reproducible
#> workflow framework for Bayesian data analysis with JAGS. Journal of
#> Open Source Software, 6(68), 3877,
#> https://doi.org/10.21105/joss.03877
#>
#> A BibTeX entry for LaTeX users is
#>
#> @Manual{,
#> title = {jagstargets: Targets for JAGS Workflows},
#> @Article{,
#> title = {The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS},
#> author = {William Michael Landau},
#> journal = {Journal of Open Source Software},
#> year = {2021},
#> note = {https://docs.ropensci.org/jagstargets/,
#> https://github.com/ropensci/jagstargets},
#> volume = {6},
#> number = {68},
#> pages = {3877},
#> url = {https://doi.org/10.21105/joss.03877},
#> }
```
20 changes: 20 additions & 0 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
citHeader("To cite jagstargets in publications use:")

citEntry(
entry = "Article",
title = "The jagstargets R package: a reproducible workflow framework for Bayesian data analysis with JAGS",
author = "William Michael Landau",
journal = "Journal of Open Source Software",
year = 2021,
volume = 6,
number = 68,
pages = 3877,
url = "https://doi.org/10.21105/joss.03877",
textVersion = paste(
"Landau, W. M., (2021).",
"The jagstargets R package:",
"a reproducible workflow framework for Bayesian data analysis with JAGS.",
"Journal of Open Source Software, 6(68), 3877,",
"https://doi.org/10.21105/joss.03877"
)
)

0 comments on commit ec7db42

Please sign in to comment.