Developing Data Products Course Project III

Caroline Richardson

September 18, 2018

Overview of Shiny Application

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.

How the Shiny Application Works

How to Use the Shiny Application

R Code to Display U.S. Map

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)

References