Skip to content

Commit

Permalink
Update citation to JOSS article
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffreyRStevens committed Nov 10, 2021
1 parent 63f9bd4 commit f03e126
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 20 deletions.
3 changes: 2 additions & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ df <- qualtrics_text %>%

To cite `{excluder}`, use:

> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R package version 0.3.2, https://docs.ropensci.org/excluder/.
> Stevens, J. R. (2021). excluder: An R package that checks for exclusion criteria in online data. _Journal of Open Source Software_, 6(67), 3893. https://doi.org/10.21105/joss.03893

## Contributing to this package

Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,8 +266,9 @@ df <- qualtrics_text %>%

To cite `{excluder}`, use:

> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R
> package version 0.3.2, <https://docs.ropensci.org/excluder/>.
> Stevens, J. R. (2021). excluder: An R package that checks for
> exclusion criteria in online data. *Journal of Open Source Software*,
> 6(67), 3893. <https://doi.org/10.21105/joss.03893>
## Contributing to this package

Expand Down
48 changes: 41 additions & 7 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"name": "R",
"url": "https://r-project.org"
},
"runtimePlatform": "R version 4.1.1 (2021-08-10)",
"runtimePlatform": "R version 4.1.2 (2021-11-01)",
"author": [
{
"@type": "Person",
Expand All @@ -28,7 +28,15 @@
}
],
"contributor": {},
"copyrightHolder": {},
"copyrightHolder": [
{
"@type": "Person",
"givenName": "Jeffrey R.",
"familyName": "Stevens",
"email": "jeffrey.r.stevens@gmail.com",
"@id": "https://orcid.org/0000-0003-2375-1360"
}
],
"funder": {},
"maintainer": [
{
Expand Down Expand Up @@ -139,6 +147,18 @@
},
"sameAs": "https://CRAN.R-project.org/package=cli"
},
{
"@type": "SoftwareApplication",
"identifier": "curl",
"name": "curl",
"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=curl"
},
{
"@type": "SoftwareApplication",
"identifier": "dplyr",
Expand Down Expand Up @@ -268,8 +288,8 @@
],
"releaseNotes": "https://github.com/ropensci/excluder/blob/master/NEWS.md",
"readme": "https://github.com/ropensci/excluder/blob/main/README.md",
"fileSize": "262.96KB",
"contIntegration": ["https://github.com/ropensci/excluder/actions", "https://app.codecov.io/gh/jeffreyrstevens/excluder?branch=main"],
"fileSize": "279.934KB",
"contIntegration": "https://app.codecov.io/gh/jeffreyrstevens/excluder?branch=main",
"developmentStatus": ["https://www.repostatus.org/#active", "https://lifecycle.r-lib.org/articles/stages.html#stable"],
"keywords": [
"qualtrics",
Expand All @@ -282,7 +302,7 @@
],
"citation": [
{
"@type": "SoftwareSourceCode",
"@type": "ScholarlyArticle",
"datePublished": "2021",
"author": [
{
Expand All @@ -291,8 +311,22 @@
"familyName": "Stevens"
}
],
"name": "{excluder}: Exclude rows to clean your data",
"url": "https://docs.ropensci.org/excluder/"
"name": "excluder: An R package that checks for exclusion criteria in online data",
"identifier": "10.21105/joss.03893",
"url": "https://doi.org/10.21105/joss.03893",
"pagination": "3893",
"@id": "https://doi.org/10.21105/joss.03893",
"sameAs": "https://doi.org/10.21105/joss.03893",
"isPartOf": {
"@type": "PublicationIssue",
"issueNumber": "67",
"datePublished": "2021",
"isPartOf": {
"@type": ["PublicationVolume", "Periodical"],
"volumeNumber": "6",
"name": "Journal of Open Source Software"
}
}
}
],
"review": {
Expand Down
20 changes: 10 additions & 10 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
citHeader("To cite excluder in publications, use:")
citHeader("To cite excluder in publications, please use:")

citEntry(entry = "manual",
title = "{excluder}: Exclude rows to clean your data",
citEntry(entry = "article",
title = "excluder: An R package that checks for exclusion criteria in online data",
author = personList(as.person("Jeffrey R. Stevens")),
year = "2021",
notes = "R package version 0.3.2",
url = "https://github.com/ropensci/excluder",
textVersion =
paste("Stevens, J.R. (2021).",
"excluder: Exclude rows to clean your data.",
"R package version 0.3.2,",
"https://github.com/ropensci/excluder.")
journal = "Journal of Open Source Software",
volume = "6",
number = "67",
pages = "3893",
url = "https://doi.org/10.21105/joss.03893",
DOI = "10.21105/joss.03893",
textVersion = "Stevens, J. R. (2021). excluder: An R package that checks for exclusion criteria in online data. Journal of Open Source Software, 6(67), 3893. https://doi.org/10.21105/joss.03893"
)

0 comments on commit f03e126

Please sign in to comment.