Skip to content

Commit 68276a2

Browse files
authored
Merge pull request #914 from cmu-delphi/release/delphi-epidata-0.3.19
Release Delphi Epidata 0.3.19
2 parents 17d44a7 + 673794a commit 68276a2

File tree

10 files changed

+16
-15
lines changed

10 files changed

+16
-15
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.3.18
2+
current_version = 0.3.19
33
commit = False
44
tag = False
55

docs/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ GEM
211211
jekyll-seo-tag (~> 2.1)
212212
minitest (5.14.4)
213213
multipart-post (2.1.1)
214-
nokogiri (1.13.4)
214+
nokogiri (1.13.6)
215215
mini_portile2 (~> 2.8.0)
216216
racc (~> 1.4)
217217
octokit (4.20.0)

docs/api/covidcast-signals/dsew-cpr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ grand_parent: COVIDcast Epidata API
1515
* **Time type:** day (see [date format docs](../covidcast_times.md))
1616
* **License:** [Public Domain US Government](https://www.usa.gov/government-works)
1717

18-
The Community Profile Report (CPR) is published by the Data Strategy and Execution Workgroup (DSEW) of the White House COVID-19 Team. For more information, see the [official description and data dictionary at healthdata.gov](https://healthdata.gov/Health/COVID-19-Community-Profile-Report/gqxm-d9w9) for "COVID-19 Community Profile Report".
18+
The Community Profile Report (CPR) is published by the Data Strategy and Execution Workgroup (DSEW) of the White House COVID-19 Team. For more information, see the [official description at healthdata.gov](https://healthdata.gov/Health/COVID-19-Community-Profile-Report/gqxm-d9w9) for "COVID-19 Community Profile Report". Each issue of the CPR is made available as an attachment on that page. You can view all attachments by scrolling to the bottom of the "About this dataset" panel and clicking "Show more".
1919

2020
This data source provides various COVID-19 related metrics, of which we report hospital admissions and vaccinations.
2121

docs/symptom-survey/weights.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ by Facebook. These weights are also used to produce our
1212
[public contingency tables](./contingency-tables.md) and the geographic aggregates
1313
[in the COVIDcast Epidata API](../api/covidcast-signals/fb-survey.md).
1414

15-
Facebook has provided documentation to describe the calculation and usage of
16-
these weights, [available here](symptom-survey-weights.pdf). This documentation
17-
explains the weight methodology, gives examples of how to use the weights when
18-
calculating estimates, and states the known limitations of the weights. We also
19-
have separate information about the [survey's limitations](limitations.md) that
20-
affect what conclusions can be drawn from the survey data.
15+
Facebook has developed a [User Guide for the CTIS
16+
Weights](https://dataforgood.facebook.com/dfg/resources/user-guide-for-ctis-weights)
17+
(updated May 2022). This manual explains the weight methodology, gives examples
18+
of how to use the weights when calculating estimates, and states the known
19+
limitations of the weights. We also have separate information about the
20+
[survey's limitations](limitations.md) that affect what conclusions can be drawn
21+
from the survey data.

src/client/delphi_epidata.R

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

18-
client_version <- '0.3.18'
18+
client_version <- '0.3.19'
1919

2020
# Helper function to cast values and/or ranges to strings
2121
.listitem <- function(value) {

src/client/delphi_epidata.js

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

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

src/client/packaging/npm/package.json

Lines changed: 1 addition & 1 deletion
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": "0.3.18",
5+
"version": "0.3.19",
66
"license": "MIT",
77
"homepage": "https://github.com/cmu-delphi/delphi-epidata",
88
"bugs": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .delphi_epidata import Epidata
22

33
name = 'delphi_epidata'
4-
__version__ = '0.3.18'
4+
__version__ = '0.3.19'

src/client/packaging/pypi/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="delphi_epidata",
8-
version="0.3.18",
8+
version="0.3.19",
99
author="David Farrow",
1010
author_email="[email protected]",
1111
description="A programmatic interface to Delphi's Epidata API.",

src/server/_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
load_dotenv()
77

8-
VERSION = "0.3.18"
8+
VERSION = "0.3.19"
99

1010
MAX_RESULTS = int(10e6)
1111
MAX_COMPATIBILITY_RESULTS = int(3650)

0 commit comments

Comments
 (0)