Yurong Li
October 8, 2018
The objective of this project is to develop a web application with shiny package in r.
The application I developed is a tool that can help you learn the names of the states of USA.
library(maps)
library(ggplot2)
states <- map_data("state")
ggplot(data = states) +
geom_polygon(aes(x = long, y = lat, group = group), fill = "wheat", color = "black") +
coord_fixed(1.3) + guides(fill=FALSE)