---
title: "Dashboard-01"
output:
flexdashboard::flex_dashboard:
orientation: columns
vertical_layout: scroll #fill
theme: spacelab #other theme names "bootstrap", "cerulean", "cosmo", "darkly", "flatly", "journal", "lumen", "paper", "readable", "sandstone", "simplex", "spacelab", "united", "yeti"
source_code: embed
self_contained: true
social: menu
---
```{r setup, include=FALSE}
library(flexdashboard)
```
## Column1
### Welcome to our Dashboard
{width="362"}
### Car plot
```{r}
plot(cars)
```
## Column2
### Participants
```{r}
valueBox(50,
caption = "Total Participants",
icon = "fa-users",
color = "lightblue")
```
### Gauge Plot
```{r}
Train_access=50
gauge( Train_access,
min=0, max=60,
label="Training success")
#ဘယ်လောက်အတိုင်းအတာထိ အောင်မြင်လဲ ပြီးမြောက်လဲဆိုတာကို စစ်ချင်ရင် gauge ကိုသုံးတယ်၊ စက်ဝိုင်းနဲ့ထွက်
```
###
```{r}
hist(cars$speed,
col = "goldenrod",
density = 30,
border = "black")
```