Henrique Sposito
Henrique Sposito
```r manyhealth::memberships$HUGGO_MEM %>% dplyr::filter(messydates::year(Begin) > "1999" & messydates::year(Begin) < "2010") %>% dplyr::filter(stateID == "USA" | stateID == "CHN") %>% as_tidygraph() %>% mutate_ties(color = ifelse(to == 47, "China", "USA")) %>% autographr(edge_color...
Although we already do a very good job in expanding and converting dates from text, additional (more complex) types of dates in text (i.e. negative and/or historical dates, approximate dates,...
`as_messydate("July 17, 2019")` returns NA instead of "17-07-2019"
`manyenviron::agreements$IEADB %>% filter(Begin < 1981)` does not work, bit this does `manyenviron::agreements$IEADB %>% filter(Begin < "1981")`... See also: `manyenviron::agreements$IEADB$Begin > 1981` and `as_messydate(c(1981, 1982, 1983))`