hlth_ds040 %>%
filter(age == c("Y_GE16"),
sex == "T",
lev_limit == "NONE",
yes_no == "YES") %>%
left_join(geo, by = "geo") %>%
right_join(europe_NUTS0, by = "geo") %>%
filter(long >= -13.8, lat >= 33) %>%
ggplot(., aes(x = long, y = lat, group = group, fill = values/100)) +
geom_polygon() + coord_map() +
scale_fill_viridis_c(na.value = "white",
labels = percent_format(accuracy = 1),
breaks = 0.01*seq(0, 90, 10),
values = c(0, 0.1, 0.2, 0.3, 0.4, 0.5, 1)) +
theme_void() + theme(legend.position = c(0.15, 0.85)) +
labs(fill = "Religious Share")