library(ggplot2)
data(oregon)
ggplot(oregon, aes(group = cd_2020)) +
geom_district() +
stat_places(state = 'OR') +
theme_map()
ggplot(oregon, aes(group = cd_2020)) +
geom_district() +
geom_places(state = 'OR') +
theme_map()
Run the code above in your browser using DataLab