Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/beauraines/covid-r
- Owner: beauraines
- Created: 2021-07-19T21:33:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-11T21:44:16.000Z (about 2 years ago)
- Last Synced: 2024-11-12T10:43:06.094Z (2 months ago)
- Topics: covid-19, covid19, r, rmarkdown
- Language: R
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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}