[2] MER_Structured_Datasets_Site_IM_FY50-52_v2_Neptune.zip [3] MER_Structured_Datasets_Site_IM_FY50-52_v2_Saturn.zip > df_tx_nn <- map_dfr(.x = files, .f = ~ read_msd(.x) %>% filter(indicator %in% c(“TX_CURR”,"TX_NEW", “TX_NET_NEW”), standardizeddisaggregate == "Total Numerator"), fiscal_year == 2052) > plots <- df_tx_nn %>% count(country, orgunituid, wt = cumulative) %>% pivot_wider(names_from = indicator, values_from = n) %>% split(.$country) %>% map(~ggplot(., aes(tx_net_new, tx_new, size = tx_curr)) + geom_point()) > paths <- str_c(names(plots), ".png") > pwalk(list(paths, plots), ggsave, path = tempdir())