-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFlexDemo.Rmd
More file actions
46 lines (33 loc) · 770 Bytes
/
Copy pathFlexDemo.Rmd
File metadata and controls
46 lines (33 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---
title: "My Super Cool Dashboard"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: fill
---
```{r setup, include=FALSE}
library(flexdashboard)
library(tidyverse)
```
Column {data-width=650}
-----------------------------------------------------------------------
### Highcharter Viz
```{r}
library(highcharter)
library(forecast)
forecast(AirPassengers) %>% hchart()
```
Column {data-width=350}
-----------------------------------------------------------------------
### Plotly
```{r}
library(plotly)
g <- ggplot(mpg) +
geom_jitter(aes(x=displ,y=hwy,color=class))
ggplotly(g)
```
### Notes
Let's just add a little write up about our analysis here
http://rmarkdown.rstudio.com/flexdashboard/examples.html
```{r}
```