Skip to content

Commit

Permalink
Remove deprecated select_tags() function
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisaloo committed Dec 7, 2023
1 parent 4fa2962 commit 9fd1ddb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,8 @@ This graph shows the total number of cases per group:

```{r }
total_cases <- dat %>%
select_tags(location, counts) %>%
tags_df() %>%
select(location, counts) %>%
group_by(location) %>%
summarise(cases = sum(counts)) %>%
mutate(location = fct_reorder(
Expand Down

0 comments on commit 9fd1ddb

Please sign in to comment.