Hi! I wanted to visualize map of Zimbabwe where each state has a different colour and each state represents the average age of respondents.
I previously tried it with tmap but it was fruitless.
Currently I am trying with ggplot2.
Below is the code I have done so far-
zimbabwe_map <- map_data("world", region = "zimbabwe")
ggplot(data = zimbabwe_map, aes(x = long, y = lat, group = group)) +
geom_polygon(data = zimbabwe_map, fill = "lightblue", color = "purple") +
coord_fixed(1.4) +
theme_void()
Any guidance is helpful thank you!