Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/beauraines/covid-r

A covid dashboard for King County, Washington and the United States focusing on new cases and community risk (cases per 100k population) built with R and RMarkdown. This relies primarily on Covid Data from the NY Times https://github.com/nytimes/covid-19-data
https://github.com/beauraines/covid-r

covid-19 covid19 r rmarkdown

Last synced: 12 days ago
JSON representation

A covid dashboard for King County, Washington and the United States focusing on new cases and community risk (cases per 100k population) built with R and RMarkdown. This relies primarily on Covid Data from the NY Times https://github.com/nytimes/covid-19-data

Awesome Lists containing this project

README

        

Covid Metrics Dashboard in R
============================

1. Generates a dashboard with R and flexdashboard
2. Writes output to Azure blob storage

## The Container

```sh
AWS_KEY=< your AWS_KEY >
AWS_SECRET=< your AWS_SECRET >
AWS_REGION=
AWS_BUCKET=
IMAGE_NAME=
docker build --pull --rm -f "Dockerfile" -t ${IMAGE_NAME} --build-arg AWS_KEY=${AWS_KEY} --build-arg AWS_SECRET=${AWS_SECRET} --build-arg AWS_REGION=${AWS_REGION} --build-arg AWS_BUCKET=${AWS_BUCKET} .
```

The container can then be pushed to an AWS ECR and scheduled to run at a specific time, with Event Bridge.

aws ecr get-login-password --region ${AWS_REGION} | docker login --username AWS --password-stdin ${REGISTRY}