Skip to content

Commit

Permalink
NOTE fix per Issue #72
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielodom committed Sep 16, 2024
1 parent 05b1d84 commit 8431b2f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: tidyREDCap
Title: Helper Functions for Working with 'REDCap' Data
Version: 1.1.1
Version: 1.1.2
Authors@R:
c(person(
given = "Raymond",
Expand Down
6 changes: 6 additions & 0 deletions R/make_choose_all_table.R
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ make_choose_all_table <- function(df, variable) {

}

# fix no visible bindings for global variables in CRAN check
blah <- NULL
value <- NULL
What <- NULL
Count <- NULL

counts <- the_vars_df |>
dplyr::mutate(dplyr::across(tidyselect::everything(), ~ . %in% c("1", "Checked"))) %>%
dplyr::mutate(dplyr::across(
Expand Down

0 comments on commit 8431b2f

Please sign in to comment.