Skip to content

Commit 9213b23

Browse files
committed
Update another join in aggregation.Rmd
1 parent a2ef5a2 commit 9213b23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/aggregation.Rmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ x <- pub_covidcast(
3939
time_values = epirange(20200601, 20211231),
4040
) %>%
4141
select(geo_value, time_value, cases = value) %>%
42-
full_join(y, by = "geo_value") %>%
42+
inner_join(y, by = "geo_value", relationship = "many-to-one", unmatched = c("error", "drop")) %>%
4343
as_epi_df(as_of = as.Date("2024-03-20"))
4444
```
4545

0 commit comments

Comments
 (0)