Skip to content

Instantly share code, notes, and snippets.

@ThoDuyNguyen
Created June 22, 2016 15:53
Show Gist options
  • Save ThoDuyNguyen/fe3545153b09d849614f23584b2dfcd0 to your computer and use it in GitHub Desktop.
Save ThoDuyNguyen/fe3545153b09d849614f23584b2dfcd0 to your computer and use it in GitHub Desktop.
---
title: "Untitled"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
horizontal_layout: fill
---
```{r setup, include=FALSE}
library(flexdashboard)
library(c3)
library(pier)
data <- data.frame(label = c('Environment','Education','Business','Community'),
value = c(104,119,638,1250),
color = RColorBrewer::brewer.pal(4, 'Spectral'))
data_2 = data.frame(a = abs(rnorm(20) * 10),
b = abs(rnorm(20) * 10),
date = seq(as.Date("2014-01-01"), by = "month", length.out = 20))
```
C3 library {.storyboard}
==================
### Time series
```{r}
c3(data_2, x='date')
```
### Simple line
```{r}
c3(data_2)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment