So this is what I've tried so far, different combos of things in Group_By and Summarize.
It seems to keep breaking the numbers down by dates for each county rather than summing total cases for each county.
> data <- read.csv("C:\\Users\\arobe\\OneDrive\\Desktop\\COVID19.csv")
> data %>%
+ group_by(COUNTY) %>%
+ summarize(Cases.Total)
`summarise()` has grouped output by 'COUNTY'. You can override using the `.groups` argument.
# A tibble: 36,774 x 2
# Groups: COUNTY [54]
COUNTY Cases.Total
<chr> <int>
1 Adams 0
2 Adams 0
3 Adams 0
4 Adams 0
5 Adams 0
6 Adams 0
7 Adams 0
8 Adams 0
9 Adams 0
10 Adams 0