Caroline Richardson
September 18, 2018
This Shiny application allows a user to learn the location of all the states of the United States of America. A user can select a state from a drop down list and that selected state is then displayed on a blank map in light pink.
library(maps)
library(mapdata)
library(ggplot2)
states <- map_data("state")
ggplot(data = states) + geom_polygon(aes(x = long, y = lat,
group = group), fill = "white", color = "black") + coord_fixed(1.5)