Open bheavner opened 5 years ago
related to #94 - in validate_config(), there's this: char_count <- config_tibble %>% dplyr::filter(!is.na(.$pivotGroup)) %>% dplyr::group_by(pivotGroup) %>% dplyr::summarize_at(.funs = dplyr::funs(dplyr::n_distinct(levels(as.factor(.)))), .vars = "pivotChar")
Warning message: funs() is soft deprecated as of dplyr 0.8.0 please use list() instead
funs(name = f(.)
list(name = ~f(.))
related to #94 - in validate_config(), there's this: char_count <- config_tibble %>% dplyr::filter(!is.na(.$pivotGroup)) %>% dplyr::group_by(pivotGroup) %>% dplyr::summarize_at(.funs = dplyr::funs(dplyr::n_distinct(levels(as.factor(.)))), .vars = "pivotChar")
Warning message: funs() is soft deprecated as of dplyr 0.8.0 please use list() instead
Before:
funs(name = f(.)
After:
list(name = ~f(.))