Skip to content

Commit

Permalink
add missing sum
Browse files Browse the repository at this point in the history
  • Loading branch information
sbfnk authored Nov 29, 2021
1 parent 4c7cb8c commit 782256c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/Germany.R
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ Germany <- R6::R6Class("Germany",
.data$date
) %>%
summarise(
cases_new = as.numeric(.data$cases_new)),
deaths_new = as.numeric(.data$deaths_new))
cases_new = as.numeric(sum(.data$cases_new)),
deaths_new = as.numeric(sum(.data$deaths_new))
) %>%
ungroup()
},
Expand Down

0 comments on commit 782256c

Please sign in to comment.