https://github.com/cdcgov/itf-dashboard
A code-only repo of the ITF Dashboard backend
Science Score: 39.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 1 DOI reference(s) in README -
○Academic publication links
-
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (10.9%) to scientific vocabulary
Repository
A code-only repo of the ITF Dashboard backend
Basic Info
- Host: GitHub
- Owner: CDCgov
- License: other
- Language: R
- Default Branch: master
- Size: 118 KB
Statistics
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 1
- Releases: 0
Metadata Files
README.md
ITF Dashboard Data Pipeline
This document has completed governance review per local and agency processes. This material is a draft.
Project Description:
This project is a repository housing R functions and scripts used in the US Centers for Disease Control and Prevention (CDC) COVID-19 Response International Task Force (ITF) COVID-19 Dashboard
As part of the CDC COVID-19 Response, the ITF Situational Awareness & Visualization (SAVI) Team has created and maintains an interal Power BI Dashboard to assist Task Force and response leadership with situational awareness of the global pandemic and response. The dashboard contains analyses of the most updated global case and testing data from multiple sources. The Power BI report that generates the dashboard runs multiple R scripts in order to refresh, process and update the data as CSV files which are then imported into Power BI for visualizations. The R functions in this project are used to read in case and testing data, apply algorithms and populate the underlying data tables of the report. Access to this dashboard is currently limited to CDC staff only.
The ITF has also created several curated Power BI views of global data on the public CDC COVID Data Tracker (https://covid.cdc.gov/covid-data-tracker/#global-counts-rates) to communicate to the general public the types of analyses that CDC is conducting using international data. The code saved to this repository would be used to populate the data underlying those views in a Power BI Dashboard.
Processing Steps
There are 3 steps in the processing pipeline:
1. Pulling and processing data for all internal dashboards (itfdashboard/0output_data.R)
1. Pulling and processing data for all external dashboards (coviddatatracker/0outputdata.R)
1. Writing out data to Azure Data Lake (export_data.R)
The GitHub Actions (GHA) workflow runs the first two at the same time and waits until they're complete to run the last one.
Running the pipeline manually, you should ensure that you've run the first two data pull steps before attempting to export.
If the data export script is successful, you should be able to see the files in Data Lake with an updated timestamp.
GitHub Actions Workflow
Scheduling
The update process is scheduled for 1935 UTC (1535 EDT) Monday Thru Friday.
This can be altered by changing the Cron settings on automateddashboardupdate.yaml#L7.
Altering the Workflow
By default, the Github Action workflow runs the three R scripts mentioned above, and any changes made to those scripts on the master branch will automatically propagate to the workflow.
If you need to add an additional step, or modify the workflow for any reason, the process is defined in: .github/workflows/automateddashboardupdate.yaml.
If you want to create a new workflow altogether, you can define a new .yaml script in the
.github/workflowsfolder.
Debugging the Workflow
Occasionally, the GHA workflow will encounter an error during processing.
You should be able to check the status of the workflow here.
If you notice an error, you can click on the failed job to view the log files to identify where the error occurred. Most of the time, this is just a simple web request issue.
If the error is ephemeral, you can try re-running the pipeline from the actions tab.
Manually triggering the GHA Workflow
You might want to trigger the workflow manually if you want data updates quicker than the scheduled refresh.
- You should be able to hit the
"Run Workflow"button on this page to trigger the pipeline - Read more about this method here
Manual SOP
This applies to cloning this repository and running the pipeline manually.
Prerequisites
Renv
This project uses {renv} to handle R package dependencies. When you clone the repo, you'll need to run the following to install all dependencies before proceeding:
r
renv::restore()
Azure Data Lake Credentials
The final write-out process requires an Azure Service Principle to transfer files to the Data Lake location. The GitHub Actions automation has these credentials stored internally, but you can request personal access from the current ITF-SAVI Lead.
- Credentials are not strictly required to process the data, but you will be unable to write out the data to the Data Lake and update the dashboards without it.
Passing Data Lake Credentials via Environment Var
If you run this locally, you'll need to create a .Renviron file in the root directory.
The .Renviron file contains environmental variables needed to connect and write files to the Data Lake.
The file should be parsed line-by-line and expected to have the following format:
AZURE_DL_PATH=XXXXX/XXXXXX
AZURE_TENANT_ID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
AZURE_APP_ID=XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
AZURE_APP_SECRET=XXXXXXXXXXXXXXXXXXXXXXXXXXXX-XXXXXXXX
- If you need assistance with this step, please contact the ITF-SAVI Team to request the .Renviron file.
- Read more about .Renviron files here
Data sources referenced:
The project uses several publicly-available data sources, including:
The COVID-19 Data Repository by the Center for Systems Science and Engineering (CSSE) at Johns Hopkins University, cases and Deaths data sets:
https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/cssecovid19data/cssecovid19timeseries/timeseriescovid19deaths_global.csv
https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/cssecovid19data/cssecovid19timeseries/timeseriescovid19confirmed_global.csv
More info here: https://github.com/CSSEGISandData/COVID-19
and here: https://coronavirus.jhu.edu/map.html
Citation: Dong E, Du H, Gardner L. An interactive web-based dashboard to track COVID-19 in real time. Lancet Inf Dis. 20(5):533-534. doi: 10.1016/S1473-3099(20)30120-1
The World Health Organization COVID-19 Global data set:
- https://covid19.who.int/WHO-COVID-19-global-data.csv
- More info here: https://covid19.who.int/
Our World In Data Testing data set (Until 6/23/2022):
https://raw.githubusercontent.com/owid/covid-19-data/master/public/data/owid-covid-data.csv
More info here: https://ourworldindata.org/coronavirus-testing
Even more info here: https://github.com/owid/covid-19-data/blob/master/public/data/README.md
Citation: Max Roser, Hannah Ritchie, Esteban Ortiz-Ospina and Joe Hasell (2020) - "Coronavirus Pandemic (COVID-19)". Published online at OurWorldInData.org. Retrieved from: 'https://ourworldindata.org/coronavirus' [Online Resource]
FIND Testing data set:
https://raw.githubusercontent.com/dsbbfinddx/FINDCov19Tracker/master/inputdata/cvdatadownload.csv
More info here: https://www.finddx.org/covid-19/test-tracker/
Standardized population data:
- https://www.cia.gov/library/publications/the-world-factbook/fields/335rank.html
Continent classifications:
- https://pkgstore.datahub.io/JohnSnowLabs/country-and-continent-codes-list/country-and-continent-codes-list-csvcsv/data/b7876b7f496677669644f3d1069d3121/country-and-continent-codes-list-csvcsv.csv
Public Domain
This repository constitutes a work of the United States Government and is not subject to domestic copyright protection under 17 USC § 105. This repository is inthe public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication. All contributions to this repository will be released under the CC0 dedication. By submitting a pull request you are agreeing to comply with this waiver of copyright interest.
License
The repository utilizes code licensed under the terms of the Apache Software License and therefore is licensed under ASL v2 or later.
This source code in this repository is free: you can redistribute it and/or modify it under the terms of the Apache Software License version 2, or (at your option) any later version.
This source code in this repository is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the Apache Software License for more details.
You should have received a copy of the Apache Software License along with this program. If not, see http://www.apache.org/licenses/LICENSE-2.0.html
The source code forked from other open source projects will inherit its license.
Privacy
This repository contains only non-sensitive, publicly available data and information. All material and community participation is covered by the Surveillance Platform Disclaimer and Code of Conduct. For more information about CDC's privacy policy, please visit http://www.cdc.gov/privacy.html.
Contributing
Anyone is encouraged to contribute to the repository by forking and submitting a pull request. (If you are new to GitHub, you might start with a basic tutorial.) By contributing to this project, you grant a world-wide, royalty-free, perpetual, irrevocable, non-exclusive, transferable license to all users under the terms of the Apache Software License v2 or later.
All comments, messages, pull requests, and other submissions received through CDC including this GitHub page are subject to the Presidential Records Act and may be archived. Learn more at http://www.cdc.gov/other/privacy.html.
Records
This repository is not a source of government records, but is a copy to increase collaboration and collaborative potential. All government records will be published through the CDC web site.
Notices
Please refer to CDC's Template Repository for more information about contributing to this repository, public domain notices and disclaimers, and code of conduct.
Owner
- Name: Centers for Disease Control and Prevention
- Login: CDCgov
- Kind: organization
- Email: data@cdc.gov
- Location: Atlanta, GA
- Website: http://open.cdc.gov/
- Twitter: CDCgov
- Repositories: 114
- Profile: https://github.com/CDCgov
CDC's collaborative software projects to protect America from health, safety, and security threats, both foreign and in the U.S.
GitHub Events
Total
- Fork event: 2
Last Year
- Fork event: 2
Committers
Last synced: about 1 year ago
Top Committers
| Name | Commits | |
|---|---|---|
| Sean Browning | 2****g | 61 |
| Kimberly Wong | 5****l | 2 |
| James Fuller | k****9@c****v | 2 |
| Boris Ning | 4****s | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: about 1 year ago
All Time
- Total issues: 5
- Total pull requests: 7
- Average time to close issues: 14 days
- Average time to close pull requests: 4 days
- Total issue authors: 1
- Total pull request authors: 3
- Average comments per issue: 0.2
- Average comments per pull request: 0.71
- Merged pull requests: 7
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 1
- Average time to close issues: N/A
- Average time to close pull requests: 13 minutes
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 1
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- beansrowning (3)
Pull Request Authors
- beansrowning (4)
- boris-ning-usds (1)
- kimkimroll (1)
Top Labels
Issue Labels
Pull Request Labels
Dependencies
- actions/checkout v2 composite
- actions/download-artifact master composite
- actions/upload-artifact v3 composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
- r-lib/actions/setup-renv v2 composite