We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ef5a2 commit 9213b23Copy full SHA for 9213b23
vignettes/aggregation.Rmd
@@ -39,7 +39,7 @@ x <- pub_covidcast(
39
time_values = epirange(20200601, 20211231),
40
) %>%
41
select(geo_value, time_value, cases = value) %>%
42
- full_join(y, by = "geo_value") %>%
+ inner_join(y, by = "geo_value", relationship = "many-to-one", unmatched = c("error", "drop")) %>%
43
as_epi_df(as_of = as.Date("2024-03-20"))
44
```
45
0 commit comments