Skip to content

Commit

Permalink
mask 'Adding missing grouping variables' message
Browse files Browse the repository at this point in the history
  • Loading branch information
orichters committed Aug 15, 2024
1 parent 1181f65 commit 90665c4
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions R/reportDuplicates.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ reportDuplicates <- function(mifdata) {
duplicates <- mifdata %>%
group_by(.data$model, .data$region, .data$variable, .data$period, .data$scenario) %>%
filter(n() > 1) %>%
ungroup() %>%
droplevels()
if (nrow(duplicates) > 0) {
short <- duplicates %>%
Expand Down

0 comments on commit 90665c4

Please sign in to comment.