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')
library(rnaturalearth)
#> Support for Spatial objects (`sp`) will be deprecated in {rnaturalearth} and will be removed in a future release of the package. Please use `sf` objects with {rnaturalearth}. For example: `ne_download(returnclass = 'sf')`
library(ggplot2)
#> Warning: package 'ggplot2' was built under R version 4.3.1
Nig <- ne_states(returnclass = 'sf', country = 'Nigeria')
class(Nig)
#> [1] "sf" "data.frame"
Nig |>
dplyr::filter(name=='Benue') |>
ggplot() +
geom_sf()