Skip to content

Commit 7155c33

Browse files
Jingjing TangJingjing Tang
authored andcommitted
fixed errors in documentation and filled in module name
1 parent e8ff69e commit 7155c33

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

google_symptoms/DETAILS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Google Symptoms
22

3-
We import the confirmed case and deaths data from the Google Research's
4-
Open COVID-19 Data project and export the county-level and state-level data
5-
as-is.
3+
We import the normalized symptom search term popularity data from the Google
4+
Research's Open COVID-19 Data project and export the county-level and state-level
5+
data as-is.
66

77
## Geographical Levels (`geo`)
88
* `county`: reported using zero-padded FIPS codes. The county level data is derived
@@ -14,13 +14,13 @@ from `/subregions/state/2020_US_state_daily_symptoms_dataset.csv`.
1414
* `Anosmia`: Google search volume for Anosmia-related searches
1515
* `Ageusia`: Google search volume for Ageusia-related searches
1616

17-
Recoveries are _not_ reported.
18-
1917
## Metrics, Level 2 (`m2`)
2018
* `raw_search`: Google search volume reported as-is
2119
* `smoothed_search`: Google search volume using 7-day moving average
2220

2321
This data reflects the volume of Google searches mapped to symptoms such Anosmia
2422
and Ageusia. The resulting daily dataset for each region showing the relative frequency
2523
of searches for each symptom. This signal is measured in arbitrary units that are normalized
26-
for population. Larger numbers represent higher numbers of symptom-related searches.
24+
for population and for the most popular symptom search term within a geographic region. Thus,
25+
values are not comparable between geographic regions. Larger numbers represent higher
26+
numbers of symptom-related searches.

google_symptoms/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Google Symptoms
22

3-
We import the confirmed case and deaths data from the Google Research's
4-
Open COVID-19 Data project and export the county-level and state-level data
5-
as-is. For detailed information see the files `DETAILS.md` contained
3+
We import the normalized symptom search term popularity data from the Google
4+
Research's Open COVID-19 Data project and export the county-level and state-level
5+
data as-is. For detailed information see the files `DETAILS.md` contained
66
in this directory.
77

88
## Running the Indicator

google_symptoms/delphi_google_symptoms/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
"""Call the function run_module when executed.
33
4-
This file indicates that calling the module (`python -m MODULE_NAME`) will
4+
This file indicates that calling the module (`python -m delphi_google_symptoms`) will
55
call the function `run_module` found within the run.py file. There should be
66
no need to change this template.
77
"""

google_symptoms/delphi_google_symptoms/run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""Functions to call when running the function.
33
44
This module should contain a function called `run_module`, that is executed
5-
when the module is run with `python -m MODULE_NAME`.
5+
when the module is run with `python -m delphi_google_symptoms`.
66
"""
77
from datetime import datetime
88
from itertools import product

0 commit comments

Comments
 (0)