-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* base changes * lint * lint * add test * fix hhs bug + doc to readme + fix signal grouping * fix weird nan * logging + error details * test data sync * typo in pull.py * region to lower * add log * fix str bug * add backup data mechanism * adjust details.md * appease linter * add tests for secondary source backup * Update signal names to _2023RVR in constants.py * clarify _2023RVR signals in DETAILS.md
- Loading branch information
Showing
7 changed files
with
318 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
[ | ||
{ | ||
"week_end": "2022-10-01T00:00:00.000", | ||
"pathogen": "COVID-19", "geography": "National", | ||
"percent_visits": "1.8", | ||
"status": "Reporting", | ||
"trend_on_date": "Decreasing", | ||
"recent_trend": "Decreasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-01T00:00:00.000", | ||
"pathogen": "Influenza", | ||
"geography": "National", | ||
"percent_visits": "0.5", | ||
"status": "Reporting", | ||
"trend_on_date": "Increasing", | ||
"recent_trend": "Increasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-01T00:00:00.000", | ||
"pathogen": "RSV", | ||
"geography": "National", | ||
"percent_visits": "0.5", | ||
"status": "Reporting", | ||
"trend_on_date": "Increasing", | ||
"recent_trend": "Increasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-01T00:00:00.000", | ||
"pathogen": "Combined", | ||
"geography": "National", | ||
"percent_visits": "2.8", | ||
"status": "Reporting", | ||
"trend_on_date": "Decreasing", | ||
"recent_trend": "Decreasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-15T00:00:00.000", | ||
"pathogen": "COVID-19", | ||
"geography": "National", | ||
"percent_visits": "1.6", | ||
"status": "Reporting", | ||
"trend_on_date": "Decreasing", | ||
"recent_trend": "Decreasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-15T00:00:00.000", | ||
"pathogen": "Influenza", | ||
"geography": "National", | ||
"percent_visits": "0.9", | ||
"status": "Reporting", | ||
"trend_on_date": "Increasing", | ||
"recent_trend": "Increasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-15T00:00:00.000", | ||
"pathogen": "RSV", | ||
"geography": "National", | ||
"percent_visits": "0.7", | ||
"status": "Reporting", | ||
"trend_on_date": "Increasing", | ||
"recent_trend": "Increasing" | ||
}, | ||
{ | ||
"week_end": "2022-10-15T00:00:00.000", | ||
"pathogen": "Combined", | ||
"geography": "National", | ||
"percent_visits": "3.2", | ||
"status": "Reporting", | ||
"trend_on_date": "Increasing", | ||
"recent_trend": "Decreasing" | ||
} | ||
] |
Oops, something went wrong.