Skip to content

Commit

Permalink
Apply pkgname::func_name on a distinct()
Browse files Browse the repository at this point in the history
See #86
  • Loading branch information
damianooldoni committed Jun 26, 2024
1 parent f59b174 commit 36d06c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/apply_decision_rules.R
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ apply_decision_rules <- function(df,
dplyr::summarize(
has_distinct_years = dplyr::n_distinct(!!rlang::sym(year)) == dplyr::n()
) %>%
distinct(.data$has_distinct_years) %>%
dplyr::distinct(.data$has_distinct_years) %>%
dplyr::pull() == TRUE),
msg = paste0(
"Timeseries in column ",
Expand Down

0 comments on commit 36d06c3

Please sign in to comment.