Page 1

Column {vertical_layout: scroll}

US Census Map


  • Interactive panning/zooming

  • Select different display modes.

  • Click on states to see population size and median age

US Census Table


  • Filter table by typing within search boxes.

  • Sort table alphabetically or numerically.

  • Edit table by double clicking and editing entries.

US Census Plots


  • Interactive panning/zooming

  • Hover over different columns to see population size by state


---
title: "2010 US Census Data Visualization Showcase"
output: 
  flexdashboard::flex_dashboard:
    storyboard: true
    social: menu
    source: embed
    theme: flatly
    vertical_layout: fill
---

```{r setup, include=FALSE}
setwd("C://Users//JHWAN//My Documents//R Scripts//portfolio")
library(flexdashboard)
```
Page 1
================================

Column  {vertical_layout: scroll}
-----------------------------------------------------------------------

### US Census Map 

```{r, include=T, echo=F,results="asis"}
library(ggplot2)
qplot(cars$speed)
```

***

- Interactive panning/zooming

- Select different display modes.

- Click on states to see population size and median age


### US Census Table

```{r}
library(ggplot2)
qplot(cars$speed)
```

***

- Filter table by typing within search boxes.

- Sort table alphabetically or numerically.

- Edit table by double clicking and editing entries.



### US Census Plots
```{r}
library(ggplot2)
qplot(cars$speed)
```

***

- Interactive panning/zooming

- Hover over different columns to see population size by state