Skip to content

Commit 6a0a2ef

Browse files
Update version to 0.2.2
1 parent f87effe commit 6a0a2ef

File tree

5 files changed

+30
-18
lines changed

5 files changed

+30
-18
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: excluder
22
Title: Checks for Exclusion Criteria in Online Data
3-
Version: 0.2.1
3+
Version: 0.2.2
44
Authors@R:
55
person(given = "Jeffrey R.",
66
family = "Stevens",

NEWS.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,21 @@
1+
# excluder 0.2.2
2+
3+
* Lifecycle has been updated to Stable, and the repo status of Active has been added.
4+
* There is now a Getting Started Excluding Data vignette that gives an overview of package usage.
5+
* Users can now specify the separator used between exclusion types in the `collapse_exclusions()` function. They can also opt to not remove the excluded columns.
6+
* A bug in the `collapse_exclusions()` function was fixed, so now a subset of exclusion columns can be collapsed into a single column.
7+
* A bug in the `remove_label_rows()` function was fixed, so now the Finished column is converted to a logical vector.
8+
* A codemeta.json file was created.
9+
* URLs have been replaced or tweaked to address CRAN package check warnings.
10+
* Functions are now organized by topic in the Reference page of the website.
11+
112
# excluder 0.2.1
213

314
* The argument name for the data frame switched from `.data` to `x` to avoid confusion with the `{rlang}` use of `.data`.
4-
515
* Instead of using `quo()` and `sym()` to create new names for columns used as arguments, `.data[[var]]` is now used.
6-
716
* The `dupe_count` column was removed from `check_duplicates()` output. Tests were adjusted to account for the new number of columns.
8-
917
* `check_duplicates()` now specifies the number of NA columns.
10-
1118
* URLs have been replaced or tweaked to address CRAN package check warnings.
12-
1319
* Links function reference pages have been added to the README.
1420

1521
# excluder 0.2.0
@@ -19,19 +25,14 @@
1925
# excluder 0.1.0
2026

2127
* The `check_qualtrics` argument was removed from `remove_label_rows()` because the functionality did not make sense. This breaks backwards compatability.
22-
2328
* `remove_label_rows()` now only filters out label rows if label rows are present and outputs invisibly.
24-
2529
* Tests were added for the `qualtrics_raw` dataset and the `remove_label_rows()` function.
26-
2730
* Package-level documentation was created.
2831

2932
# excluder 0.0.1
3033

3134
* `remove_label_rows()` now converts character columns to dates for multiple date formats, including YYYY-MM-DD HH:MM:SS, YYYY-MM-DD HH:MM, MM:DD:YYYY HH:MM:SS, and MM:DD:YYYY HH:MM (#1).
32-
3335
* Code of Conduction and Contributor Guide are added.
34-
3536
* Citation and Contributor sections are added to README.
3637

3738
# excluder 0.0.0.1

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ tibble::glimpse(df)
126126

127127
To cite `{excluder}`, use:
128128

129-
> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R package version 0.2.1, https://jeffreyrstevens.github.io/excluder/.
129+
> Stevens, J.R. (2021). excluder: Exclude rows to clean your data. R package version 0.2.2, https://jeffreyrstevens.github.io/excluder/.
130130
131131
## Contributing to this package
132132

codemeta.json

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
2-
"@context": ["https://doi.org/10.5063/schema/codemeta-2.0", "http://schema.org"],
2+
"@context": [
3+
"https://doi.org/10.5063/schema/codemeta-2.0",
4+
"http://schema.org"
5+
],
36
"@type": "SoftwareSourceCode",
47
"identifier": "excluder",
58
"description": "Data that are collected through online sources such as Mechanical \n Turk may require excluding data because of IP address duplication, \n geolocation, or completion duration. This package facilitates\n exclusion of these data for Qualtrics datasets.",
@@ -8,7 +11,7 @@
811
"relatedLink": "https://jeffreyrstevens.github.io/excluder/",
912
"issueTracker": "https://github.com/jeffreyrstevens/excluder/issues/",
1013
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.2.1",
14+
"version": "0.2.2",
1215
"programmingLanguage": {
1316
"@type": "ComputerLanguage",
1417
"name": "R",
@@ -229,10 +232,18 @@
229232
],
230233
"releaseNotes": "https://github.com/jeffreyrstevens/excluder/blob/master/NEWS.md",
231234
"readme": "https://github.com/JeffreyRStevens/excluder/blob/main/README.md",
232-
"fileSize": "211.632KB",
235+
"fileSize": "215.716KB",
233236
"contIntegration": "https://codecov.io/gh/jstevens5/excluder?branch=main",
234237
"developmentStatus": ["https://www.repostatus.org/#active", "https://lifecycle.r-lib.org/articles/stages.html#stable"],
235-
"keywords": ["qualtrics", "mturk", "datacleaning", "exclusion", "r", "rstats", "r-package"],
238+
"keywords": [
239+
"qualtrics",
240+
"mturk",
241+
"datacleaning",
242+
"exclusion",
243+
"r",
244+
"rstats",
245+
"r-package"
246+
],
236247
"citation": [
237248
{
238249
"@type": "SoftwareSourceCode",

inst/CITATION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ citEntry(entry = "manual",
44
title = "{excluder}: Exclude rows to clean your data",
55
author = personList(as.person("Jeffrey R. Stevens")),
66
year = "2021",
7-
notes = "R package version 0.2.1",
7+
notes = "R package version 0.2.2",
88
url = "https://jeffreyrstevens.github.io/excluder/",
99
textVersion =
1010
paste("Stevens, J.R. (2021).",
1111
"excluder: Exclude rows to clean your data.",
12-
"R package version 0.2.1,",
12+
"R package version 0.2.2,",
1313
"https://jeffreyrstevens.github.io/excluder/.")
1414
)

0 commit comments

Comments
 (0)