Description Usage Format Examples
Median income in Hawaii counties for 2010 and 2015, from the 2010 and 2015 five-year American Community Survey.
1  | 
An object of class tbl_df (inherits from tbl, data.frame) with 10 rows and 5 columns.
1 2 3 4 5  | hawaii_income_diff <- select(hawaii_income, -median_income_moe) %>%
  spread(year, median_income) %>%
  mutate(income_diff = `2015` - `2010`)
ggplot(hawaii_income_diff, aes(county, income_diff)) + geom_col()
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.