I am using the choroplethr package in R to plot the teen pregnancy rates (per Thousand) for each county in New York. This code takes the data from an Excel file, extracts the county FIPS and teen pregnancy rates, and plots the data on a county map of New York State:
NYTeenPreg <- read.csv("file.csv", stringsAsFactors=FALSE)
county <- data.frame(region= NYTeenPreg$FIPS, value=NYTeenPreg$Teen.Birth.Rate)
county_choropleth(county, "New York Teen Pregnancy Rates by County", state_zoom= "new york") + scale_fill_brewer("Teen Birth Rate \n (per 1000)", type = "seq", palette="YlOrBr")
The map, itself, looks great. But is there a way I specifically label the data for one of the counties? Is there a way to put a black border specifically around that one county? For example, let's say I want to display the information for Erie County, which has a FIPS code of 36029 and the teen birth rate is 25.