Skip to content

Commit

Permalink
Another deprecation warning to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
olivroy committed Feb 21, 2024
1 parent a8452bf commit fd1d83e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/keys_near.R
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ keys_near.tbl_ts <- function(.data,
dplyr::select(dplyr::all_of(key),
{{ var }},
dplyr::any_of(names(funs))) %>%
tidyr::pivot_longer(cols = -c(key, {{ var }}),
tidyr::pivot_longer(cols = -c(dplyr::all_of(key), {{ var }}),
names_to = "stat",
values_to = "stat_value") %>%
dplyr::mutate(stat_diff = abs({{ var }} - stat_value)) %>%
Expand Down

0 comments on commit fd1d83e

Please sign in to comment.