Skip to content

Release Delphi Epidata 0.3.7 #820

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
Jan 28, 2022
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
7fab1fb
Merge pull request #804 from cmu-delphi/bot/sync-main-dev
krivard Jan 10, 2022
b7fa131
fix the description of the availability threshold
jingjtang Jan 14, 2022
df6bcea
Merge pull request #808 from cmu-delphi/fix_quidel_doc
krivard Jan 14, 2022
b656cb0
Improve documentation for some survey signals
capnrefsmmat Jan 17, 2022
5ba0486
Add age-specific signals
jingjtang Jan 18, 2022
3541a6d
Merge pull request #809 from cmu-delphi/survey-signal-fixes
capnrefsmmat Jan 18, 2022
8639fa4
Add Wave 12 final Word/PDFs
capnrefsmmat Jan 18, 2022
4296704
Merge pull request #813 from cmu-delphi/survey/final-wave-12
capnrefsmmat Jan 19, 2022
d8f032f
documentation for google symptoms new signals
Jan 20, 2022
e98871b
updating signal names to lower case
Jan 20, 2022
085ab52
Update docs/api/covidcast-signals/google-symptoms.md
nloliveira Jan 21, 2022
a505cb2
Update docs/api/covidcast-signals/google-symptoms.md
nloliveira Jan 21, 2022
4347694
Update docs/api/covidcast-signals/google-symptoms.md
nloliveira Jan 21, 2022
789e8e1
Update docs/api/covidcast-signals/google-symptoms.md
nloliveira Jan 21, 2022
da547fd
Update docs/api/covidcast-signals/google-symptoms.md
nloliveira Jan 21, 2022
662b2f2
Update docs/api/covidcast-signals/google-symptoms.md
nloliveira Jan 21, 2022
0d15c83
emphasizing when signals are comparable and when they are not
Jan 21, 2022
d345b57
Merge pull request #815 from cmu-delphi/doc_google_symptoms_omicron
krivard Jan 21, 2022
ed5c85c
chore: update docs
krivard Jan 21, 2022
4ed8921
Merge pull request #812 from cmu-delphi/update_quidel_doc
krivard Jan 22, 2022
a23bef8
Merge pull request #816 from cmu-delphi/bot/update-docs
krivard Jan 22, 2022
af74a56
remove "weekly updates" wording
nmdefries Jan 24, 2022
490e9be
changing signal names
Jan 25, 2022
47a9a8b
Merge pull request #817 from cmu-delphi/clarify-hhs-update-text
krivard Jan 27, 2022
afda29e
Merge pull request #818 from cmu-delphi/doc_google_symptoms_omicron
krivard Jan 27, 2022
7d6d371
Document the upcoming Wave 13
capnrefsmmat Jan 27, 2022
c82d9e1
Correct waves for flu, mention Spanish translation issue
capnrefsmmat Jan 27, 2022
53e4796
Correct description of wave overlap period
capnrefsmmat Jan 28, 2022
978991b
Correct Wave 13 deployment date
capnrefsmmat Jan 28, 2022
02d4bdf
chore: release delphi-epidata 0.3.7
krivard Jan 28, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix the description of the availability threshold
  • Loading branch information
jingjtang authored Jan 14, 2022
commit b7fa131e11b6f436d29be8d8aa6f00c1c87e28f8
14 changes: 10 additions & 4 deletions docs/api/covidcast-signals/quidel.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,25 @@ We estimate p across 3 temporal-spatial aggregation schemes:

**MSA and HRR levels**: In a given MSA or HRR, suppose $$N$$ COVID tests are taken
in a certain time period, $$X$$ is the number of tests taken with positive
results. If $$N \geq 50$$, we simply use:
results.

For raw signals:
- if $$N \geq 50$$, we simply use:

$$
p = \frac{100 X}{N}
$$

If $$N < 50$$, we lend $$50 - N$$ fake samples from its home state to shrink the
For smoothed signals, before taking the temporal pooling average,
- if $$N \geq 50$$, we also use:
$$
p = \frac{100 X}{N}
$$
- if $$25 \leq N < 50$$, we lend $$50 - N$$ fake samples from its home state to shrink the
estimate to the state's mean, which means:

$$
p = 100 \left( \frac{N}{50} \frac{X}{N} + \frac{50 - N}{50} \frac{X_s}{N_s} \right)
$$

where $$N_s, X_s$$ are the number of COVID tests and the number of COVID tests
taken with positive results taken in its home state in the same time period.

Expand Down