Skip to content

Instantly share code, notes, and snippets.

@ThoDuyNguyen
Created August 12, 2016 04:13
Show Gist options
  • Save ThoDuyNguyen/302fbb91313f5141ddfe4f3151a6b85e to your computer and use it in GitHub Desktop.
Save ThoDuyNguyen/302fbb91313f5141ddfe4f3151a6b85e 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(DT)
```
Column
-----------------------------------------------------------------------
### Chart A
```{r}
DT::datatable(
mtcars,
extensions = 'Buttons',
options = list(dom = 'Bfrtip',
buttons = c('csv', 'excel')
)
)
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment