We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5a07e35 + e1813d9 commit 22a6acaCopy full SHA for 22a6aca
R/getData.R
@@ -56,7 +56,7 @@ getData <- function(schema = NULL, input = NULL){
56
mutate(ind = if_else(ind %in% targetRows, min(targetRows), ind)) %>%
57
group_by(ind) %>%
58
summarise(across(everything(), eval_tidy(temp$by$char))) %>%
59
- mutate(across(where(is.character), function(x) na_if(x, "")))
+ mutate(across(where(is.character), ~na_if(x = ., y = "")))
60
61
outNum <- suppressWarnings(outNum %>%
62
@@ -102,3 +102,5 @@ getData <- function(schema = NULL, input = NULL){
102
103
return(out)
104
}
105
+
106
+utils::globalVariables("where")
0 commit comments