Graph: 1 - Line Charts

Load the Urban Institute ggplot2 Theme:

source('https://raw.githubusercontent.com/UrbanInstitute/urban_R_theme/master/urban_ggplot_theme.R')

Run ggplot2 on the example economics_long data, definining three aesthetics for the x-axis, y-axis, and color. Then add the line geometry.

# ggplot(economics_long, aes(x=date, y=value01, colour = variable))
# + geom_line()
# + scale_y_continuous(expand = c(0,0))
# + ggtitle('Example line chart')