Skip to content

Commit 1292ad4

Browse files
committed
news, version, remove unnecessary edits
1 parent e80e18c commit 1292ad4

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: REDCapTidieR
22
Type: Package
33
Title: Extract 'REDCap' Databases into Tidy 'Tibble's
4-
Version: 1.2.3
4+
Version: 1.2.3.9000
55
Authors@R: c(
66
person("Richard", "Hanna", , "hannar1@chop.edu", role = c("aut", "cre"),
77
comment = c(ORCID = "0009-0005-6496-8154")),

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# REDCapTidieR (development version)
2+
3+
- Added an option in `combine_checkboxes()` to concatenate checkbox values when multiple are selected. (#225)
4+
15
# REDCapTidieR 1.2.3
26

37
- Fixed a bug causing `read_redcap()` to incorrectly report categorical variables with data values that don't match any options in the metadata.

R/combine_checkboxes.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
#' values or labels for the options. Default 'label'.
3939
#' @param keep Logical indicating whether to keep the original checkbox fields in
4040
#' the output. Default `TRUE`.
41+
#'
4142
#' @return A modified supertibble.
4243
#'
4344
#' @examples
@@ -104,8 +105,7 @@ combine_checkboxes <- function(supertbl,
104105
multi_value_sep = ", ",
105106
values_fill = NA,
106107
raw_or_label = "label",
107-
keep = TRUE,
108-
...) {
108+
keep = TRUE) {
109109
# Check args ---
110110
check_arg_is_supertbl(supertbl, req_cols = c("redcap_data", "redcap_metadata"))
111111
check_arg_is_character(names_prefix, len = 1)

0 commit comments

Comments
 (0)