Skip to content

Commit

Permalink
update dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
ernestguevarra committed Dec 16, 2020
1 parent 5d58509 commit 5ef3953
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions sudanCMAMdashboard.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -2946,7 +2946,7 @@ Row
### Number of lives saved - Aljazira

```{r}
lsAljazira <- round(0.1975 * 850, digits = 2)
lsAljazira <- round(0.0745 * 850, digits = 2)
renderValueBox({
valueBox(
Expand All @@ -2961,7 +2961,7 @@ renderValueBox({
### Number of lives saved - Kassala

```{r}
lsKassala <- round(0.1975 * 12035, digits = 2)
lsKassala <- round(0.0745 * 12035, digits = 2)
renderValueBox({
valueBox(
Expand All @@ -2976,7 +2976,7 @@ renderValueBox({
### Number of lives saved - North Darfur

```{r}
lsNorthDarfur <- round(0.1975 * 30322, digits = 2)
lsNorthDarfur <- round(0.0745 * 30322, digits = 2)
renderValueBox({
valueBox(
Expand All @@ -2994,7 +2994,7 @@ Row
### Years of life lost (YLL) averted - Aljazira

```{r}
yllAljazira <- 65 - 1.5
yllAljazira <- 65 - 1.33
yllAljazira <- round(lsAljazira * yllAljazira, digits = 2)
renderValueBox({
Expand All @@ -3010,7 +3010,7 @@ renderValueBox({
### Years of life lost (YLL) averted - Kassala

```{r}
yllKassala <- 65 - 1.5
yllKassala <- 65 - 1.08
yllKassala <- round(lsKassala * yllKassala, digits = 2)
renderValueBox({
Expand All @@ -3026,7 +3026,7 @@ renderValueBox({
### Years of life lost (YLL) averted - North Darfur

```{r}
yllNorthDarfur <- 65 - 1.5
yllNorthDarfur <- 65 - 1.17
yllNorthDarfur <- round(lsNorthDarfur * yllNorthDarfur, digits = 2)
renderValueBox({
Expand Down

0 comments on commit 5ef3953

Please sign in to comment.