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/hospital-admissions.md
+19-9Lines changed: 19 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,10 @@ COVID-associated diagnosis code in a given location, on a given day.
20
20
21
21
| Signal | Description |
22
22
| --- | --- |
23
-
|`smoothed_covid19`| Estimated percentage of new hospital admissions with COVID-associated diagnoses, based on data from health system partners, smoothed in time using a Gaussian linear smoother |
24
-
|`smoothed_adj_covid19`| Same, but with systematic day-of-week effects removed using [the same mechanism as in `doctor-visits`](doctor-visits.md#day-of-week-adjustment)|
23
+
|`smoothed_covid19`| Estimated percentage of new hospital admissions with COVID-associated diagnoses, based on electronic medical record and claims data from health system partners, smoothed in time using a Gaussian linear smoother. _This signal is no longer updated as of 1 October, 2020._|
24
+
|`smoothed_adj_covid19`| Same as `smoothed_covid19`, but with systematic day-of-week effects removed using [the same mechanism as in `doctor-visits`](doctor-visits.md#day-of-week-adjustment). _This signal is no longer updated as of 1 October, 2020._|
25
+
|`smoothed_covid19_from_claims`| Estimated percentage of new hospital admissions with COVID-associated diagnoses, based on claims data from health system partners, smoothed in time using a Gaussian linear smoother |
26
+
|`smoothed_adj_covid19_from_claims`| Same as `smoothed_covid19_from_claims`, but with systematic day-of-week effects removed using [the same mechanism as in `doctor-visits`](doctor-visits.md#day-of-week-adjustment)|
25
27
26
28
## Table of contents
27
29
{: .no_toc .text-delta}
@@ -67,18 +69,14 @@ In the electronic medical records stream, admissions are considered COVID-associ
67
69
68
70
For the claims stream, admissions are considered COVID-associated if the patient has a primary ICD-10 code matching {U071, U072, B9729, J1281, Z03818, B342, J1289}.
69
71
70
-
71
72
## Estimation
72
73
73
-
For a fixed location $$i$$ and time $$t$$, let $$Y_{it} = Y_{it}^{\text{emr}} + Y_{it}^{\text{claims}}$$ denote the number of
74
-
hospital admissions meeting the qualifying conditions, where the superscript denotes the respective data stream. Similarly, let $$N_{it} = N_{it}^{\text{emr}} + N_{it}^{\text{claims}}$$ denote the
75
-
total number of hospital admissions.
74
+
For a fixed location $$i$$ and time $$t$$, let $$Y_{it}$$ denote the number of hospital admissions meeting the qualifying conditions. Let $$N_{it}$$ denote the total number of hospital admissions.
76
75
77
-
Our estimate of the COVID-19 percentage is
78
-
weighted by the contribution from each data stream according to the magnitude of their total admissions.
76
+
Our estimate of the COVID-19 percentage is given by
*`smoothed_covid19` and `smoothed_adj_covid19`: This signal combines data from electronic medical records (emr) and claims records. Here, $$Y_{it} = Y_{it}^{\text{emr}} + Y_{it}^{\text{claims}}$$ is the number of
94
+
hospital admissions meeting the qualifying conditions, where the superscript denotes the respective data stream. Similarly, $$N_{it} = N_{it}^{\text{emr}} + N_{it}^{\text{claims}}$$ is taken as the
95
+
total number of hospital admissions. Thus, the estimate of the COVID-19 percentage is
96
+
weighted by the contribution from each data stream according to the magnitude of their total admissions.
*`smoothed_covid19_from_claims` and `smoothed_adj_covid19_from_claims`: This signal uses data solely from the claims stream: $$Y_{it} = Y_{it}^{\text{claims}} $$ and $$N_{it} = N_{it}^{\text{claims}}$$.
103
+
94
104
## Backwards Padding
95
105
96
106
This source undergoes the same backwards padding adjustment as the `doctor-visits`
0 commit comments