Skip to content

Commit f03e126

Browse files
Update citation to JOSS article
1 parent 63f9bd4 commit f03e126

File tree

4 files changed

+56
-20
lines changed

4 files changed

+56
-20
lines changed

README.Rmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,8 @@ df <- qualtrics_text %>%
138138

139139
To cite `{excluder}`, use:
140140

141-
> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R package version 0.3.2, https://docs.ropensci.org/excluder/.
141+
> 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
142+
142143

143144
## Contributing to this package
144145

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -266,8 +266,9 @@ df <- qualtrics_text %>%
266266

267267
To cite `{excluder}`, use:
268268

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

codemeta.json

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"name": "R",
1818
"url": "https://r-project.org"
1919
},
20-
"runtimePlatform": "R version 4.1.1 (2021-08-10)",
20+
"runtimePlatform": "R version 4.1.2 (2021-11-01)",
2121
"author": [
2222
{
2323
"@type": "Person",
@@ -28,7 +28,15 @@
2828
}
2929
],
3030
"contributor": {},
31-
"copyrightHolder": {},
31+
"copyrightHolder": [
32+
{
33+
"@type": "Person",
34+
"givenName": "Jeffrey R.",
35+
"familyName": "Stevens",
36+
"email": "jeffrey.r.stevens@gmail.com",
37+
"@id": "https://orcid.org/0000-0003-2375-1360"
38+
}
39+
],
3240
"funder": {},
3341
"maintainer": [
3442
{
@@ -139,6 +147,18 @@
139147
},
140148
"sameAs": "https://CRAN.R-project.org/package=cli"
141149
},
150+
{
151+
"@type": "SoftwareApplication",
152+
"identifier": "curl",
153+
"name": "curl",
154+
"provider": {
155+
"@id": "https://cran.r-project.org",
156+
"@type": "Organization",
157+
"name": "Comprehensive R Archive Network (CRAN)",
158+
"url": "https://cran.r-project.org"
159+
},
160+
"sameAs": "https://CRAN.R-project.org/package=curl"
161+
},
142162
{
143163
"@type": "SoftwareApplication",
144164
"identifier": "dplyr",
@@ -268,8 +288,8 @@
268288
],
269289
"releaseNotes": "https://github.com/ropensci/excluder/blob/master/NEWS.md",
270290
"readme": "https://github.com/ropensci/excluder/blob/main/README.md",
271-
"fileSize": "262.96KB",
272-
"contIntegration": ["https://github.com/ropensci/excluder/actions", "https://app.codecov.io/gh/jeffreyrstevens/excluder?branch=main"],
291+
"fileSize": "279.934KB",
292+
"contIntegration": "https://app.codecov.io/gh/jeffreyrstevens/excluder?branch=main",
273293
"developmentStatus": ["https://www.repostatus.org/#active", "https://lifecycle.r-lib.org/articles/stages.html#stable"],
274294
"keywords": [
275295
"qualtrics",
@@ -282,7 +302,7 @@
282302
],
283303
"citation": [
284304
{
285-
"@type": "SoftwareSourceCode",
305+
"@type": "ScholarlyArticle",
286306
"datePublished": "2021",
287307
"author": [
288308
{
@@ -291,8 +311,22 @@
291311
"familyName": "Stevens"
292312
}
293313
],
294-
"name": "{excluder}: Exclude rows to clean your data",
295-
"url": "https://docs.ropensci.org/excluder/"
314+
"name": "excluder: An R package that checks for exclusion criteria in online data",
315+
"identifier": "10.21105/joss.03893",
316+
"url": "https://doi.org/10.21105/joss.03893",
317+
"pagination": "3893",
318+
"@id": "https://doi.org/10.21105/joss.03893",
319+
"sameAs": "https://doi.org/10.21105/joss.03893",
320+
"isPartOf": {
321+
"@type": "PublicationIssue",
322+
"issueNumber": "67",
323+
"datePublished": "2021",
324+
"isPartOf": {
325+
"@type": ["PublicationVolume", "Periodical"],
326+
"volumeNumber": "6",
327+
"name": "Journal of Open Source Software"
328+
}
329+
}
296330
}
297331
],
298332
"review": {

inst/CITATION

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
citHeader("To cite excluder in publications, use:")
1+
citHeader("To cite excluder in publications, please use:")
22

3-
citEntry(entry = "manual",
4-
title = "{excluder}: Exclude rows to clean your data",
3+
citEntry(entry = "article",
4+
title = "excluder: An R package that checks for exclusion criteria in online data",
55
author = personList(as.person("Jeffrey R. Stevens")),
66
year = "2021",
7-
notes = "R package version 0.3.2",
8-
url = "https://github.com/ropensci/excluder",
9-
textVersion =
10-
paste("Stevens, J.R. (2021).",
11-
"excluder: Exclude rows to clean your data.",
12-
"R package version 0.3.2,",
13-
"https://github.com/ropensci/excluder.")
7+
journal = "Journal of Open Source Software",
8+
volume = "6",
9+
number = "67",
10+
pages = "3893",
11+
url = "https://doi.org/10.21105/joss.03893",
12+
DOI = "10.21105/joss.03893",
13+
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"
1414
)

0 commit comments

Comments
 (0)