Skip to content

Commit d5287ba

Browse files
authored
Merge pull request #1635 from cmu-delphi/release/delphi-epidata-4.1.33
Release Delphi Epidata 4.1.33
2 parents 8cd880f + 8dfbf20 commit d5287ba

File tree

11 files changed

+518
-613
lines changed

11 files changed

+518
-613
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 4.1.32
2+
current_version = 4.1.33
33
commit = False
44
tag = False
55

.github/workflows/performance-tests-one-time.yml

-100
This file was deleted.

dev/local/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = Delphi Development
3-
version = 4.1.32
3+
version = 4.1.33
44

55
[options]
66
packages =

docs/Gemfile.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ GEM
214214
jekyll-seo-tag (~> 2.1)
215215
minitest (5.17.0)
216216
multipart-post (2.1.1)
217-
nokogiri (1.18.3)
217+
nokogiri (1.18.4)
218218
mini_portile2 (~> 2.8.2)
219219
racc (~> 1.4)
220220
octokit (4.20.0)

docs/api/covidcast-signals/nssp.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ As of May 2024, NSSP received data from 78% of US EDs.
4343

4444
The percent visits signals are calculated as a fraction of visits at facilities reporting to NSSP, rather than all facilities in the area.
4545
`county`, `state` and `nation` level data is reported as-is from NSSP, without modification, while `hhs`, `hrr` and `msa` are estimated by Delphi.
46+
State and HSA-level values are calculated and published by NSSP; County level values are not published individually, but are approximations copied from the HSA the county is in (every county in an HSA will have identical values).
4647

4748
### Geographic weighting
4849
As the original data is a percentage and raw case counts are not available, `hrr`,`msa`, and `hhs` values are computed from county-level data using a weighted mean. Each county is assigned a weight equal to its population in the last census (2020). Unreported counties are implicitly treated as having a weight of 0 or a value equal to the group mean.
@@ -69,6 +70,8 @@ The following states report no data through NSSP at the county level: CA, WA, AK
6970

7071
South Dakota, Missouri, and territories report no data through NSSP at the state level.
7172

73+
The only completely non-reporting state is Missouri.
74+
7275

7376
## Lag and Backfill
7477

@@ -84,6 +87,9 @@ Counties with `NA` values are as originally reported in the dataset from which t
8487

8588
## Limitations
8689

90+
As noted above, only state and HSA-level values are calculated and published by NSSP; County level values are not published individually, but are approximations copied from the HSA the county is in (every county in an HSA will have identical values).
91+
The HSA (Health Service Area) definitions used are known as ["NCI Modified"](https://seer.cancer.gov/seerstat/variables/countyattribs/hsa.html).
92+
8793
There is substantial missingness at the county level. This tends to impact more rural and lower population locations. See the [missingness section](#missingness) for more information.
8894

8995
Not all counties contain reporting EDs, including in states where NSSP reports state-level data.
@@ -104,4 +110,4 @@ Some low population counties occasionally report outliers, e.g. 33.33%, 50%, 100
104110
This source is derived from the CDC's [Respiratory Virus Response NSSP Emergency Department Visit Trajectories dataset](https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-NSSP-Emergency-Dep/rdmq-nq56/about_data).
105111
There is another version of the dataset that includes [state data only](https://data.cdc.gov/Public-Health-Surveillance/2023-Respiratory-Virus-Response-NSSP-Emergency-Dep/7mra-9cq9/about_data).
106112

107-
This data was originally published by the CDC, and is made available here as a convenience to the forecasting community under the terms of the original license, which is [U.S. Government Public Domain](https://www.usa.gov/government-copyright).
113+
This data was originally published by the CDC, and is made available here as a convenience to the forecasting community under the terms of the original license, which is [U.S. Government Public Domain](https://www.usa.gov/government-copyright).

docs/symptom-survey/index.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ The archive includes complete documentation, including a Methodology Report on
3030
survey design, a survey weighting guide, guides to the aggregate and microdata,
3131
and example code. Aggregate contingency tables are available for public download
3232
and restricted microdata can be obtained upon request. If you are a researcher
33-
and would like to get access to the data, see our page on getting [data
34-
access](data-access.md).
33+
and would like to get access to the data, see our page on getting [data access](data-access.md).
3534

3635
If you have questions about the survey or getting access to data, contact us at
3736

src/client/delphi_epidata.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Epidata <- (function() {
1515
# API base url
1616
BASE_URL <- getOption('epidata.url', default = 'https://api.delphi.cmu.edu/epidata/')
1717

18-
client_version <- '4.1.32'
18+
client_version <- '4.1.33'
1919

2020
auth <- getOption("epidata.auth", default = NA)
2121

src/client/delphi_epidata.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
}
2323
})(this, function (exports, fetchImpl, jQuery) {
2424
const BASE_URL = "https://api.delphi.cmu.edu/epidata/";
25-
const client_version = "4.1.32";
25+
const client_version = "4.1.33";
2626

2727
// Helper function to cast values and/or ranges to strings
2828
function _listitem(value) {

src/client/packaging/npm/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "delphi_epidata",
33
"description": "Delphi Epidata API Client",
44
"authors": "Delphi Group",
5-
"version": "4.1.32",
5+
"version": "4.1.33",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {

src/server/_config.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
load_dotenv()
99

10-
VERSION = "4.1.32"
10+
VERSION = "4.1.33"
1111

1212
MAX_RESULTS = int(10e6)
1313
MAX_COMPATIBILITY_RESULTS = int(3650)

0 commit comments

Comments
 (0)