Skip to content

Commit 12ebe40

Browse files
authored
Merge pull request #735 from cmu-delphi/release/delphi-epidata-0.2.15
Release Delphi Epidata 0.2.15
2 parents 3b54250 + 61129ff commit 12ebe40

File tree

19 files changed

+563
-457
lines changed

19 files changed

+563
-457
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.2.14
2+
current_version = 0.2.15
33
commit = False
44
tag = False
55

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Missing Signal Detector
2+
3+
on:
4+
workflow_dispatch:
5+
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Check out code
11+
uses: actions/checkout@v2
12+
with:
13+
ref: dev
14+
- name: Set up Python 3.8
15+
uses: actions/setup-python@v2
16+
with:
17+
python-version: 3.8
18+
- name: Install Dependencies
19+
run: pip install requests pandas
20+
- name: Run Missing Signals Detector
21+
run: python scripts/report_missing_covidcast_meta.py
22+
- name: Upload Missing Artifact
23+
if: failure()
24+
uses: actions/upload-artifact@v2
25+
with:
26+
name: missing_db_signals.csv
27+
path: missing_db_signals.csv
28+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ __pycache__/
77
/build
88
/node_modules
99
.mypy_cache
10+
/missing_db_signals.csv

docs/Gemfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,15 +204,15 @@ GEM
204204
rb-fsevent (~> 0.10, >= 0.10.3)
205205
rb-inotify (~> 0.9, >= 0.9.10)
206206
mercenary (0.3.6)
207-
mini_portile2 (2.5.1)
207+
mini_portile2 (2.6.1)
208208
minima (2.5.1)
209209
jekyll (>= 3.5, < 5.0)
210210
jekyll-feed (~> 0.9)
211211
jekyll-seo-tag (~> 2.1)
212212
minitest (5.14.4)
213213
multipart-post (2.1.1)
214-
nokogiri (1.11.5)
215-
mini_portile2 (~> 2.5.0)
214+
nokogiri (1.12.5)
215+
mini_portile2 (~> 2.6.1)
216216
racc (~> 1.4)
217217
octokit (4.20.0)
218218
faraday (>= 0.9)

docs/api/covidcast-signals/fb-survey.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,7 @@ survey, which go into more detail on symptoms, contacts, risk factors, and
8585
demographics. These are used for many of our behavior and testing indicators
8686
below. The full text of the survey (including all deployed versions) can be
8787
found on our [questions and coding page](../../symptom-survey/coding.md).
88-
Researchers can [request
89-
access](https://dataforgood.fb.com/docs/covid-19-symptom-survey-request-for-data-access/)
88+
Researchers can [request access](https://dataforgood.facebook.com/dfg/docs/covid-19-trends-and-impact-survey-request-for-data-access)
9089
to (fully de-identified) individual survey responses for research purposes.
9190

9291
As of early March 2021, the average number of Facebook survey responses we

docs/symptom-survey/data-access.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ characteristics are available for download.
2222
De-identified individual survey responses can be made available to researchers
2323
associated with universities or non-profit organizations who sign a Data Use
2424
Agreement (DUA). To request access to the data please submit the information
25-
requested in [Facebook's page on obtaining data
26-
access](https://dataforgood.fb.com/docs/covid-19-symptom-survey-request-for-data-access/),
25+
requested in [Facebook's page on obtaining data access](https://dataforgood.facebook.com/dfg/docs/covid-19-trends-and-impact-survey-request-for-data-access),
2726
which sets out the basic conditions and provides a form to request access. An
2827
[international version of CTIS](https://covidmap.umd.edu/) is conducted by the
2928
University of Maryland (UMD) and access can be requested through the same

docs/symptom-survey/problems.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,15 @@ June 26, 2021, 89.5% of the initial decrease in total response volume has been
6161
recovered. The response volume continued to recover as Android users updated to
6262
the fixed version of the Facebook app.
6363

64+
## B13 Missing from Data Files (May-June 2021)
65+
66+
Survey item B13 was added in Wave 11 beginning May 20, 2021. Due to a survey
67+
implementation bug, responses to B13 received between May 20 and June 16th were
68+
not included in the API or in microdata files. This problem was fixed on June
69+
16th; however, due to an oversight, certain microdata files were not corrected
70+
to contain B13 responses until September 27, 2021. All files should now contain
71+
responses to item B13 from the beginning of Wave 11.
72+
6473
## Incorrect Coding in Documentation
6574

6675
We found a Qualtrics bug that affects the exported text of the survey (but not

0 commit comments

Comments
 (0)