You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/api/covidcast-signals/chng.md
+47-2Lines changed: 47 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,8 @@ commercial purposes.
26
26
| --- | --- |
27
27
|`smoothed_outpatient_covid`| Estimated percentage of outpatient doctor visits with confirmed COVID-19, based on Change Healthcare claims data that has been de-identified in accordance with HIPAA privacy regulations, smoothed in time using a Gaussian linear smoother |
28
28
|`smoothed_adj_outpatient_covid`| Same, but with systematic day-of-week effects removed; see [details below](#day-of-week-adjustment)|
29
+
|`smoothed_outpatient_cli`| Estimated percentage of outpatient doctor visits primarily about COVID-related symptoms, based on Change Healthcare claims data that has been de-identified in accordance with HIPAA privacy regulations, smoothed in time using a Gaussian linear smoother |
30
+
|`smoothed_adj_outpatient_cli`| Same, but with systematic day-of-week effects removed; see [details below](#day-of-week-adjustment)|
29
31
30
32
## Table of contents
31
33
{: .no_toc .text-delta}
@@ -64,15 +66,38 @@ not necessarily indicative of a true increase of COVID-19 in a location.
64
66
65
67
## Qualifying Conditions
66
68
67
-
We receive data on the following two categories of counts:
69
+
We receive data on the following six categories of counts:
68
70
69
71
- Denominator: Daily count of all unique outpatient visits.
70
72
- Covid: Daily count of all unique visits with primary ICD-10 code in any of:
71
73
{U07.1, B97.21, or B97.29}.
74
+
- COVID-like: Daily count of all unique outpatient visits with primary ICD-10 code
75
+
of any of: {U07.1, U07.2, B97.29, J12.81, Z03.818, B34.2, J12.89}.
76
+
- Flu-like: Daily count of all unique outpatient visits with primary ICD-10 code
77
+
of any of: {J22, B34.9}. The occurrence of these codes in an area is
78
+
correlated with that area's historical influenza activity, but are
79
+
diagnostic codes not specific to influenza and can appear in COVID-19 cases.
80
+
- Mixed: Daily count of all unique outpatient visits with primary ICD-10 code of
81
+
any of: {Z20.828, J12.9}. The occurance of these codes in an area is
82
+
correlated to a blend of that area's COVID-19 confirmed case counts and
83
+
influenza behavior, and are not diagnostic codes specific to either disease.
84
+
- Flu: Daily count of all unique outpatient visits with primary ICD-10 code of
85
+
any of: {J09\*, J10\*, J11\*}. The asterisk `*` indicates inclusion of all
86
+
subcodes. This set of codes are assigned to influenza viruses.
87
+
88
+
For the COVID signal, we consider only the *Denominator* and *Covid* counts.
89
+
90
+
For the CLI signal, if a patient has multiple visits on the same date (and hence
91
+
multiple primary ICD-10 codes), then we will only count one of and in descending
92
+
order: *Flu*, *COVID-like*, *Flu-like*, *Mixed*. This ordering tries to account for
93
+
the most definitive confirmation, e.g. the codes assigned to *Flu* are only used
94
+
for confirmed influenza cases, which are unrelated to the COVID-19 coronavirus.
72
95
73
96
## Estimation
74
97
75
-
### COVID-Like Illness
98
+
### COVID Illness
99
+
100
+
The following estimation method is used for the `*_outpatient_covid` signals.
76
101
77
102
For a fixed location $$i$$ and time $$t$$, let $$Y_{it}$$
78
103
denote the Covid counts and let $$N_{it}$$ be the
@@ -83,6 +108,22 @@ $$
83
108
\hat p_{it} = 100 \cdot \frac{Y_{it}}{N_{it}}
84
109
$$
85
110
111
+
### COVID-Like Illness
112
+
113
+
The following estimation method is used for the `*_outpatient_cli` signals.
114
+
115
+
For a fixed location $$i$$ and time $$t$$, let $$Y_{it}^{\text{Covid-like}}$$,
0 commit comments