The goal of iGIScData is to furnish GEOG 604/704 students with a variety of datasets.
You can install the released version of iGIScData from GitHub with:
# install.packages("remotes")
remotes::install_github("iGISc/iGIScData")
The accompanying datasets are ‘lazily’ loaded into your global environment.
library(iGIScData)
library(ggplot2)
ggplot() +
geom_sf(data = BayAreaCounties) +
theme_void()