Column

Level of Participation by Region

Column

Level of Participation in table

ALL.schools Elementary Secondary
ARMM 0.0 0.1 0.0
CAR 64.8 64.7 64.9
CARAGA 54.8 53.8 59.1
NCR 77.3 80.5 71.7
RO I 23.4 25.8 12.4
RO II 13.3 15.6 1.2
RO III 83.0 85.6 71.7
RO IV-A 55.7 57.6 49.0
RO IV-B 34.5 35.5 29.8
RO IX 56.4 58.8 43.3
RO V 36.8 35.5 43.0
RO VI 26.3 26.6 24.7
RO VII 60.1 59.7 61.6
RO VIII 36.1 37.0 29.3
RO X 77.4 77.6 76.4
RO XI 14.8 14.6 15.7
RO XII 16.0 15.3 18.5
---
title: "WiNS Monitoring System 2018: Status of Encoding"
output: 
  flexdashboard::flex_dashboard:
    orientation: column
    social: menu
    source_code: embed
---

```{r setup, include=FALSE}
library(knitr)
library(d3heatmap)
library(flexdashboard)
library(readxl)
getwd()
rwins<- read.csv("C:/Users/Marvin Marquez/Documents/R/Syntax/Status of Encoding.csv", row.names="region")
str(rwins)
```

Column {data-width=650}
-----------------------------------------------------------------------

### Level of Participation by Region

```{r,include }
d3heatmap(rwins, scale= "column")
```

Column {data-width=350}
-----------------------------------------------------------------------

### Level of Participation in table

```{r}
knitr::kable(rwins)
```