Good day all, I am having issues adding the boundaries alongside with the names of all the local government of Benue State, Nigeria on this map, I will really appreciate if someone can help me with the shape file of all the local Government in Benue State, Nigeria. The code can be found below:
Load Libraries
library(tidyverse)
library(rnaturalearth)
Nig <- ne_states(returnclass = 'sf', country = 'Nigeria')
Get the boundary for Benue State
Benue <- Nig %>% filter(name=='Benue')
Visualize this with ggplot2
ggplot(data = Benue)+geom_sf()