기본 콘텐츠로 건너뛰기

5.1.1.2 R Flexdashboard를 통해 Dashboard 만들기 1편_예시

Ch3_2. Flexdashboard를 통한 Dashboard 만들기 1편 -2- , 레이아웃 예시

 

  • 예시 1
---
title: "Dashboard 1"
output: 
  flexdashboard::flex_dashboard:
    orientation: rows
    source_code: embed
    theme: readable
  runtime: shiny
---

```{r setup, include=FALSE}
library(flexdashboard)
```

DASHBOARD 1
========================

Row
------------------------
### GRAPH1

Row{data-width=650}
------------------------
### GRAPH1 


### GRAPH2

Row{data-width=650}
------------------------

### GRAPH1

### GRAPH2

### GRAPH3

DASHBOARD 1_2
========================

Row
------------------------
### GRAPH1

Row{data-width=650}
------------------------
### GRAPH1 


### GRAPH2

Row{data-width=650}
------------------------

### GRAPH1

### GRAPH2

### GRAPH3
  • 예시 2
---
title: "Dashboard 2"
output: 
  flexdashboard::flex_dashboard:
    orientation: rows
    source_code: embed
    theme: readable
  runtime: shiny
---

```{r setup, include=FALSE}
library(flexdashboard)
```

DASHBOARD 2
========================

Column{.sidebar}
------------------------

### Graph1

### Graph2

Row
------------------------

### Graph1

### Graph2

Row
------------------------

### Graph1