diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ca4bb2ac0..d7df2f4c1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 4.1.10 +current_version = 4.1.11 commit = False tag = False diff --git a/dev/local/setup.cfg b/dev/local/setup.cfg index 1bb150963..2894916e6 100644 --- a/dev/local/setup.cfg +++ b/dev/local/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = Delphi Development -version = 4.1.10 +version = 4.1.11 [options] packages = diff --git a/docs/new_endpoint_tutorial.md b/docs/new_endpoint_tutorial.md index 6e6094161..abf8a5fa1 100644 --- a/docs/new_endpoint_tutorial.md +++ b/docs/new_endpoint_tutorial.md @@ -123,11 +123,9 @@ Here's what we add to each client: def fluview_meta(): """Fetch FluView metadata.""" # Set up request - params = { - 'endpoint': 'fluview_meta', - } + params = {} # Make the API call - return Epidata._request(params) + return Epidata._request("fluview_meta", params) ``` - [`delphi_epidata.R`](https://github.com/cmu-delphi/delphi-epidata/blob/dev/src/client/delphi_epidata.R) diff --git a/docs/symptom-survey/publications.md b/docs/symptom-survey/publications.md index 06c1d59c7..149e5d379 100644 --- a/docs/symptom-survey/publications.md +++ b/docs/symptom-survey/publications.md @@ -26,6 +26,10 @@ Pandemic"](https://www.pnas.org/topic/548) in *PNAS*: Research publications using the survey data include: +- Ma, M.Z., Chen, S.X. (2023). [Beyond the surface: accounting for confounders + in understanding the link between collectivism and COVID-19 pandemic in the + United States](https://doi.org/10.1186/s12889-023-16384-2). *BMC Public + Health* 23, 1513. - C.K. Ettman, E. Badillo Goicoechea, and E.A. Stuart (2023). [Evolution of depression and anxiety over the COVID-19 pandemic and across demographic groups in a large sample of U.S. adults](https://doi.org/10.1016/j.focus.2023.100140). @@ -62,7 +66,7 @@ Research publications using the survey data include: - Rönn MM, Menzies NA, Salomon JA (2023). [Vaccination and voting patterns in the United States: analysis of COVID-19 and flu surveys from 2010 to 2022](https://doi.org/10.1016/j.amepre.2023.03.001). *American Journal of - Preventive Medicine.* + Preventive Medicine* 65 (3), 458-466. - Taube JC, Susswein Z, Bansal S (2023). [Spatiotemporal Trends in Self-Reported Mask-Wearing Behavior in the United States: Analysis of a Large Cross-sectional Survey](https://doi.org/10.2196/42128). *JMIR Public Health diff --git a/integrations/acquisition/covid_hosp/facility/test_scenarios.py b/integrations/acquisition/covid_hosp/facility/test_scenarios.py index c6c51e2f5..44ee3572d 100644 --- a/integrations/acquisition/covid_hosp/facility/test_scenarios.py +++ b/integrations/acquisition/covid_hosp/facility/test_scenarios.py @@ -28,7 +28,7 @@ def setUp(self): self.test_utils = UnitTestUtils(__file__) # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') # use the local instance of the epidata database diff --git a/integrations/acquisition/covid_hosp/state_daily/test_scenarios.py b/integrations/acquisition/covid_hosp/state_daily/test_scenarios.py index 2054d19c8..8636295bc 100644 --- a/integrations/acquisition/covid_hosp/state_daily/test_scenarios.py +++ b/integrations/acquisition/covid_hosp/state_daily/test_scenarios.py @@ -32,7 +32,7 @@ def setUp(self): self.test_utils = UnitTestUtils(__file__) # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') # use the local instance of the epidata database diff --git a/integrations/acquisition/covid_hosp/state_timeseries/test_scenarios.py b/integrations/acquisition/covid_hosp/state_timeseries/test_scenarios.py index 8565b8e7f..46bdeebcd 100644 --- a/integrations/acquisition/covid_hosp/state_timeseries/test_scenarios.py +++ b/integrations/acquisition/covid_hosp/state_timeseries/test_scenarios.py @@ -28,7 +28,7 @@ def setUp(self): self.test_utils = UnitTestUtils(__file__) # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') # use the local instance of the epidata database diff --git a/integrations/acquisition/covidcast/test_covidcast_meta_caching.py b/integrations/acquisition/covidcast/test_covidcast_meta_caching.py index 16e2506fc..30b6bbcf2 100644 --- a/integrations/acquisition/covidcast/test_covidcast_meta_caching.py +++ b/integrations/acquisition/covidcast/test_covidcast_meta_caching.py @@ -22,7 +22,7 @@ ) # use the local instance of the Epidata API -BASE_URL = 'http://delphi_web_epidata/epidata/api.php' +BASE_URL = 'http://delphi_web_epidata/epidata' class CovidcastMetaCacheTests(unittest.TestCase): @@ -82,8 +82,8 @@ def tearDown(self): @staticmethod def _make_request(): - params = {'endpoint': 'covidcast_meta', 'cached': 'true'} - response = requests.get(Epidata.BASE_URL, params=params, auth=Epidata.auth) + params = {'cached': 'true'} + response = requests.get(f"{Epidata.BASE_URL}/covidcast_meta", params=params, auth=Epidata.auth) response.raise_for_status() return response.json() diff --git a/integrations/acquisition/covidcast/test_csv_uploading.py b/integrations/acquisition/covidcast/test_csv_uploading.py index e9c066f6a..dab35f414 100644 --- a/integrations/acquisition/covidcast/test_csv_uploading.py +++ b/integrations/acquisition/covidcast/test_csv_uploading.py @@ -69,7 +69,7 @@ def setUp(self): epidata_cnx.close() # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') def tearDown(self): @@ -132,7 +132,7 @@ def test_uploading(self): main(args) response = Epidata.covidcast('src-name', signal_name, 'day', 'state', 20200419, '*') - expected_values = pd.concat([values, pd.DataFrame({ "time_value": [20200419] * 3, "signal": [signal_name] * 3, "direction": [None] * 3})], axis=1).rename(columns=uploader_column_rename).to_dict(orient="records") + expected_values = pd.concat([values, pd.DataFrame({ "geo_type": "state", "source": "src-name", "time_type": "day", "time_value": [20200419] * 3, "signal": [signal_name] * 3, "direction": [None] * 3})], axis=1).rename(columns=uploader_column_rename).to_dict(orient="records") expected_response = {'result': 1, 'epidata': self.apply_lag(expected_values), 'message': 'success'} self.assertEqual(response, expected_response) @@ -161,6 +161,9 @@ def test_uploading(self): response = Epidata.covidcast('src-name', signal_name, 'day', 'state', 20200419, '*') expected_values = pd.concat([values, pd.DataFrame({ + "geo_type": "state", + "source": "src-name", + "time_type": "day", "time_value": [20200419] * 3, "signal": [signal_name] * 3, "direction": [None] * 3, @@ -194,7 +197,7 @@ def test_uploading(self): main(args) response = Epidata.covidcast('src-name', signal_name, 'day', 'state', 20200419, '*') - expected_response = {'result': -2, 'message': 'no results'} + expected_response = {'epidata': [], 'result': -2, 'message': 'no results'} self.assertEqual(response, expected_response) self.verify_timestamps_and_defaults() @@ -220,6 +223,9 @@ def test_uploading(self): response = Epidata.covidcast('src-name', signal_name, 'day', 'state', 20200419, '*') expected_values_df = pd.concat([values, pd.DataFrame({ + "geo_type": "state", + "source": "src-name", + "time_type": "day", "time_value": [20200419], "signal": [signal_name], "direction": [None]})], axis=1).rename(columns=uploader_column_rename) @@ -253,6 +259,9 @@ def test_uploading(self): response = Epidata.covidcast('src-name', signal_name, 'day', 'state', 20200419, '*') expected_values = pd.concat([values, pd.DataFrame({ + "geo_type": "state", + "source": "src-name", + "time_type": "day", "time_value": [20200419], "signal": [signal_name], "direction": [None] @@ -283,7 +292,7 @@ def test_uploading(self): main(args) response = Epidata.covidcast('src-name', signal_name, 'day', 'state', 20200419, '*') - expected_response = {'result': -2, 'message': 'no results'} + expected_response = {'epidata': [], 'result': -2, 'message': 'no results'} self.assertEqual(response, expected_response) self.verify_timestamps_and_defaults() diff --git a/integrations/acquisition/covidcast_nowcast/test_csv_uploading.py b/integrations/acquisition/covidcast_nowcast/test_csv_uploading.py index 1299c6144..bf1a0f9a0 100644 --- a/integrations/acquisition/covidcast_nowcast/test_csv_uploading.py +++ b/integrations/acquisition/covidcast_nowcast/test_csv_uploading.py @@ -55,7 +55,7 @@ def setUp(self): secrets.db.epi = ('user', 'pass') # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') def tearDown(self): diff --git a/integrations/client/test_delphi_epidata.py b/integrations/client/test_delphi_epidata.py index 4ef1fa6a3..2af923b2b 100644 --- a/integrations/client/test_delphi_epidata.py +++ b/integrations/client/test_delphi_epidata.py @@ -24,9 +24,9 @@ def fake_epidata_endpoint(func): """This can be used as a decorator to enable a bogus Epidata endpoint to return 404 responses.""" def wrapper(*args): - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/fake_api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/fake_epidata' func(*args) - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' return wrapper class DelphiEpidataPythonClientTests(CovidcastBase): @@ -39,7 +39,7 @@ def localSetUp(self): self._db._cursor.execute('update covidcast_meta_cache set timestamp = 0, epidata = "[]"') # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') # use the local instance of the epidata database @@ -65,8 +65,8 @@ def test_covidcast(self): ) expected = [ - row_latest_issue.as_api_compatibility_row_dict(), - rows[-1].as_api_compatibility_row_dict() + row_latest_issue.as_api_row_dict(), + rows[-1].as_api_row_dict() ] self.assertEqual(response['epidata'], expected) @@ -85,10 +85,10 @@ def test_covidcast(self): expected = [{ rows[0].signal: [ - row_latest_issue.as_api_compatibility_row_dict(ignore_fields=['signal']), + row_latest_issue.as_api_row_dict(ignore_fields=['signal']), ], rows[-1].signal: [ - rows[-1].as_api_compatibility_row_dict(ignore_fields=['signal']), + rows[-1].as_api_row_dict(ignore_fields=['signal']), ], }] @@ -105,7 +105,7 @@ def test_covidcast(self): **self.params_from_row(rows[0]) ) - expected = [row_latest_issue.as_api_compatibility_row_dict()] + expected = [row_latest_issue.as_api_row_dict()] # check result self.assertEqual(response_1, { @@ -120,7 +120,7 @@ def test_covidcast(self): **self.params_from_row(rows[0], as_of=rows[1].issue) ) - expected = [rows[1].as_api_compatibility_row_dict()] + expected = [rows[1].as_api_row_dict()] # check result self.maxDiff=None @@ -130,6 +130,14 @@ def test_covidcast(self): 'message': 'success', }) + with self.subTest(name='bad as-of date'): + # fetch data, specifying as_of + as_of_response = Epidata.covidcast( + **self.params_from_row(rows[0], as_of="20230101-20230102") + ) + self.assertEqual(as_of_response, {"epidata": [], "message": "not a valid date: 20230101-20230102", "result": -1}) + + with self.subTest(name='request a range of issues'): # fetch data, specifying issue range, not lag response_2 = Epidata.covidcast( @@ -137,8 +145,8 @@ def test_covidcast(self): ) expected = [ - rows[0].as_api_compatibility_row_dict(), - rows[1].as_api_compatibility_row_dict() + rows[0].as_api_row_dict(), + rows[1].as_api_row_dict() ] # check result @@ -154,7 +162,7 @@ def test_covidcast(self): **self.params_from_row(rows[0], lag=2) ) - expected = [row_latest_issue.as_api_compatibility_row_dict()] + expected = [row_latest_issue.as_api_row_dict()] # check result self.assertDictEqual(response_3, { @@ -170,7 +178,7 @@ def test_covidcast(self): ) # check result - self.assertEqual(response_1, {'message': 'no results', 'result': -2}) + self.assertEqual(response_1, {'epidata': [], 'message': 'no results', 'result': -2}) @patch('requests.post') @patch('requests.get') @@ -196,7 +204,7 @@ def test_retry_request(self, get): mock_response = MagicMock() mock_response.status_code = 200 get.side_effect = [JSONDecodeError('Expecting value', "", 0), mock_response] - response = Epidata._request(None) + response = Epidata._request("") self.assertEqual(get.call_count, 2) self.assertEqual(response, mock_response.json()) @@ -207,7 +215,7 @@ def test_retry_request(self, get): get.side_effect = [JSONDecodeError('Expecting value', "", 0), JSONDecodeError('Expecting value', "", 0), mock_response] - response = Epidata._request(None) + response = Epidata._request("") self.assertEqual(get.call_count, 2) # 2 from previous test + 2 from this one self.assertEqual(response, {'result': 0, 'message': 'error: Expecting value: line 1 column 1 (char 0)'} @@ -228,7 +236,7 @@ def test_geo_value(self): self._insert_rows(rows) counties = [ - rows[i].as_api_compatibility_row_dict() for i in range(N) + rows[i].as_api_row_dict() for i in range(N) ] def fetch(geo): @@ -339,13 +347,15 @@ def test_async_epidata(self): self.params_from_row(rows[0], source='covidcast'), self.params_from_row(rows[1], source='covidcast') ]*12, batch_size=10) - responses = [i[0] for i in test_output] - # check response is same as standard covidcast call, using 24 calls to test batch sizing + responses = [i[0]["epidata"] for i in test_output] + # check response is same as standard covidcast call (minus fields omitted by the api.php endpoint), + # using 24 calls to test batch sizing + ignore_fields = CovidcastTestRow._api_row_compatibility_ignore_fields self.assertEqual( responses, [ - Epidata.covidcast(**self.params_from_row(rows[0])), - Epidata.covidcast(**self.params_from_row(rows[1])), + [{k: row[k] for k in row.keys() - ignore_fields} for row in Epidata.covidcast(**self.params_from_row(rows[0]))["epidata"]], + [{k: row[k] for k in row.keys() - ignore_fields} for row in Epidata.covidcast(**self.params_from_row(rows[1]))["epidata"]], ]*12 ) diff --git a/integrations/client/test_nowcast.py b/integrations/client/test_nowcast.py index f5124e021..84fc0e080 100644 --- a/integrations/client/test_nowcast.py +++ b/integrations/client/test_nowcast.py @@ -39,7 +39,7 @@ def setUp(self): self.cur = cnx.cursor() # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') # use the local instance of the epidata database @@ -133,4 +133,4 @@ def test_covidcast_nowcast(self): response = Epidata.covidcast_nowcast( 'src', 'sig1', 'sensor', 'day', 'county', 22222222, '01001') - self.assertEqual(response, {'result': -2, 'message': 'no results'}) + self.assertEqual(response, {'epidata': [], 'result': -2, 'message': 'no results'}) diff --git a/integrations/server/test_api_keys.py b/integrations/server/test_api_keys.py index 418e265ac..8cb50016a 100644 --- a/integrations/server/test_api_keys.py +++ b/integrations/server/test_api_keys.py @@ -11,24 +11,21 @@ class APIKeysTets(DelphiTestBase): def localSetUp(self): self.role_name = "cdc" - def _make_request(self, url: str = None, params: dict = {}, auth: tuple = None): - if not url: - url = self.epidata_client.BASE_URL + def _make_request(self, endpoint: str, params: dict = {}, auth: tuple = None): + url = f"{self.epidata_client.BASE_URL}/{endpoint}" response = requests.get(url, params=params, auth=auth) return response def test_public_route(self): """Test public route""" - public_route = "http://delphi_web_epidata/epidata/version" status_codes = set() for _ in range(10): - status_codes.add(self._make_request(public_route).status_code) + status_codes.add(self._make_request("version").status_code) self.assertEqual(status_codes, {200}) def test_no_multiples_data_source(self): """Test requests with no multiples and with provided `data_source` and `signal` as a separate query params.""" params = { - "source": "covidcast", "data_source": "fb-survey", "signal": "smoothed_wcli", "time_type": "day", @@ -38,13 +35,12 @@ def test_no_multiples_data_source(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {200}) def test_no_multiples_source_signal(self): """Test requests with colon-delimited source-signal param presentation.""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli", "time_type": "day", "geo_type": "state", @@ -53,13 +49,12 @@ def test_no_multiples_source_signal(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {200}) def test_multiples_allowed_signal_two_multiples(self): """Test requests with 2 multiples and allowed dashboard signal""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli", "time_type": "day", "geo_type": "state", @@ -68,13 +63,12 @@ def test_multiples_allowed_signal_two_multiples(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {200}) def test_multiples_non_allowed_signal(self): """Test requests with 2 multiples and non-allowed dashboard signal""" params = { - "source": "covidcast", "signal": "hospital-admissions:smoothed_adj_covid19_from_claims", "time_type": "day", "geo_type": "state", @@ -83,13 +77,12 @@ def test_multiples_non_allowed_signal(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {200, 429}) def test_multiples_mixed_allowed_signal_two_multiples(self): """Test requests with 2 multiples and mixed-allowed dashboard signal""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli,hospital-admissions:smoothed_adj_covid19_from_claims", "time_type": "day", "geo_type": "state", @@ -98,13 +91,12 @@ def test_multiples_mixed_allowed_signal_two_multiples(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {200, 429}) def test_multiples_allowed_signal_three_multiples(self): """Test requests with 3 multiples and allowed dashboard signal""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli,fb-survey:smoothed_wcli", "time_type": "day", "geo_type": "state", @@ -113,13 +105,12 @@ def test_multiples_allowed_signal_three_multiples(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {401}) def test_multiples_mixed_allowed_signal_three_multiples(self): """Test requests with 3 multiples and mixed-allowed dashboard signal""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli,fb-survey:smoothed_wcli1", "time_type": "day", "geo_type": "state", @@ -128,13 +119,12 @@ def test_multiples_mixed_allowed_signal_three_multiples(self): } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("covidcast", params=params).status_code) self.assertEqual(status_codes, {401}) def test_multiples_mixed_allowed_signal_api_key(self): """Test requests with 3 multiples and mixed-allowed dashboard signal + valid API Key""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli,fb-survey:smoothed_wcli1", "time_type": "day", "geo_type": "state", @@ -144,14 +134,13 @@ def test_multiples_mixed_allowed_signal_api_key(self): status_codes = set() for _ in range(10): status_codes.add( - self._make_request(params=params, auth=self.epidata_client.auth).status_code + self._make_request("covidcast", params=params, auth=self.epidata_client.auth).status_code ) self.assertEqual(status_codes, {200}) def test_multiples_allowed_signal_api_key(self): """Test requests with 3 multiples and allowed dashboard signal + valid API Key""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli,fb-survey:smoothed_wcli", "time_type": "day", "geo_type": "state", @@ -161,14 +150,13 @@ def test_multiples_allowed_signal_api_key(self): status_codes = set() for _ in range(10): status_codes.add( - self._make_request(params=params, auth=self.epidata_client.auth).status_code + self._make_request("covidcast", params=params, auth=self.epidata_client.auth).status_code ) self.assertEqual(status_codes, {200}) def test_no_multiples_allowed_signal_api_key(self): """Test requests with no multiples and allowed dashboard signal + valid API Key""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli", "time_type": "day", "geo_type": "state", @@ -178,14 +166,13 @@ def test_no_multiples_allowed_signal_api_key(self): status_codes = set() for _ in range(10): status_codes.add( - self._make_request(params=params, auth=self.epidata_client.auth).status_code + self._make_request("covidcast", params=params, auth=self.epidata_client.auth).status_code ) self.assertEqual(status_codes, {200}) def test_no_multiples_allowed_signal_bad_api_key(self): """Test requests with no multiples and allowed dashboard signal + bad API Key""" params = { - "source": "covidcast", "signal": "fb-survey:smoothed_wcli", "time_type": "day", "geo_type": "state", @@ -196,54 +183,51 @@ def test_no_multiples_allowed_signal_bad_api_key(self): for _ in range(10): status_codes.add( self._make_request( - params=params, auth=("bad_key", "bad_email") + "covidcast", params=params, auth=("bad_key", "bad_email") ).status_code ) self.assertEqual(status_codes, {200}) def test_restricted_endpoint_no_key(self): """Test restricted endpoint with no auth key""" - params = {"source": "cdc", "regions": "1as", "epiweeks": "202020"} + params = {"regions": "1as", "epiweeks": "202020"} status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("cdc", params=params).status_code) self.assertEqual(status_codes, {401}) def test_restricted_endpoint_invalid_key(self): """Test restricted endpoint with invalid auth key""" params = { - "source": "cdc", "regions": "1as", "epiweeks": "202020", "auth": "invalid_key", } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("cdc", params=params).status_code) self.assertEqual(status_codes, {401}) def test_restricted_endpoint_no_roles_key(self): """Test restricted endpoint with no roles key""" params = { - "source": "cdc", "regions": "1as", "epiweeks": "202020", "auth": "key", } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("cdc", params=params).status_code) self.assertEqual(status_codes, {401}) def test_restricted_endpoint_valid_roles_key(self): """Test restricted endpoint with valid auth key with required role""" params = { - "source": "cdc", "regions": "1as", "epiweeks": "202020", "auth": "cdc_key", } status_codes = set() for _ in range(10): - status_codes.add(self._make_request(params=params).status_code) + status_codes.add(self._make_request("cdc", params=params).status_code) self.assertEqual(status_codes, {200}) diff --git a/integrations/server/test_covid_hosp.py b/integrations/server/test_covid_hosp.py index 37aa77363..100d961c4 100644 --- a/integrations/server/test_covid_hosp.py +++ b/integrations/server/test_covid_hosp.py @@ -16,7 +16,7 @@ def setUp(self): """Perform per-test setup.""" # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') # use the local instance of the epidata database diff --git a/integrations/server/test_covidcast.py b/integrations/server/test_covidcast.py index 73787d664..4963ca9a8 100644 --- a/integrations/server/test_covidcast.py +++ b/integrations/server/test_covidcast.py @@ -23,7 +23,7 @@ def localSetUp(self): def request_based_on_row(self, row: CovidcastTestRow, **kwargs): params = self.params_from_row(row, endpoint='covidcast', **kwargs) # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') response = Epidata.covidcast(**params) @@ -90,7 +90,7 @@ def test_round_trip(self): # make the request response = self.request_based_on_row(row) - expected = [row.as_api_compatibility_row_dict()] + expected = [row.as_api_row_dict()] self.assertEqual(response, { 'result': 1, @@ -156,13 +156,15 @@ def test_csv_format(self): **{'format':'csv'} ) - # This is a hardcoded mess because of api.php. + # This is a hardcoded mess because of the field ordering constructed here: + # https://github.com/cmu-delphi/delphi-epidata/blob/f7da6598a810be8df5374e3a71512c631c3a14f1/src/server/endpoints/covidcast.py#L83-L93 column_order = [ - "geo_value", "signal", "time_value", "direction", "issue", "lag", "missing_value", + "geo_value", "signal", "source", "geo_type", "time_type", + "time_value", "direction", "issue", "lag", "missing_value", "missing_stderr", "missing_sample_size", "value", "stderr", "sample_size" ] expected = ( - row.as_api_compatibility_row_df() + row.as_api_row_df() .assign(direction = None) .to_csv(columns=column_order, index=False) ) @@ -179,7 +181,7 @@ def test_raw_json_format(self): # make the request response = self.request_based_on_row(row, **{'format':'json'}) - expected = [row.as_api_compatibility_row_dict()] + expected = [row.as_api_row_dict()] # assert that the right data came back self.assertEqual(response, expected) @@ -191,13 +193,13 @@ def test_fields(self): row = self._insert_placeholder_set_one() # limit fields - response = self.request_based_on_row(row, **{"fields":"time_value,geo_value"}) + response = self.request_based_on_row(row, **{"fields":"time_value,geo_value,geo_type,source,time_type"}) - expected = row.as_api_compatibility_row_dict() + expected = row.as_api_row_dict() expected_all = { 'result': 1, 'epidata': [{ - k: expected[k] for k in ['time_value', 'geo_value'] + k: expected[k] for k in ['time_value', 'geo_value', 'geo_type', 'source', 'time_type'] }], 'message': 'success', } @@ -206,7 +208,7 @@ def test_fields(self): self.assertEqual(response, expected_all) # limit using invalid fields - response = self.request_based_on_row(row, fields='time_value,geo_value,doesnt_exist') + response = self.request_based_on_row(row, fields='time_value,geo_value,geo_type,source,time_type,doesnt_exist') # assert that the right data came back (only valid fields) self.assertEqual(response, expected_all) @@ -226,7 +228,7 @@ def test_location_wildcard(self): # insert placeholder data rows = self._insert_placeholder_set_two() - expected = [row.as_api_compatibility_row_dict() for row in rows[:3]] + expected = [row.as_api_row_dict() for row in rows[:3]] # make the request response = self.request_based_on_row(rows[0], geo_value="*") @@ -243,7 +245,7 @@ def test_time_values_wildcard(self): # insert placeholder data rows = self._insert_placeholder_set_three() - expected = [row.as_api_compatibility_row_dict() for row in rows[:3]] + expected = [row.as_api_row_dict() for row in rows[:3]] # make the request response = self.request_based_on_row(rows[0], time_values="*") @@ -261,7 +263,7 @@ def test_issues_wildcard(self): # insert placeholder data rows = self._insert_placeholder_set_five() - expected = [row.as_api_compatibility_row_dict() for row in rows[:3]] + expected = [row.as_api_row_dict() for row in rows[:3]] # make the request response = self.request_based_on_row(rows[0], issues="*") @@ -279,7 +281,7 @@ def test_signal_wildcard(self): # insert placeholder data rows = self._insert_placeholder_set_four() - expected_signals = [row.as_api_compatibility_row_dict() for row in rows[:3]] + expected_signals = [row.as_api_row_dict() for row in rows[:3]] # make the request response = self.request_based_on_row(rows[0], signals="*") @@ -297,7 +299,7 @@ def test_geo_value(self): # insert placeholder data rows = self._insert_placeholder_set_two() - expected = [row.as_api_compatibility_row_dict() for row in rows[:3]] + expected = [row.as_api_row_dict() for row in rows[:3]] def fetch(geo_value): # make the request @@ -335,7 +337,7 @@ def test_location_timeline(self): # insert placeholder data rows = self._insert_placeholder_set_three() - expected_timeseries = [row.as_api_compatibility_row_dict() for row in rows[:3]] + expected_timeseries = [row.as_api_row_dict() for row in rows[:3]] # make the request response = self.request_based_on_row(rows[0], time_values='20000101-20000105') @@ -372,7 +374,7 @@ def test_nullable_columns(self): # make the request response = self.request_based_on_row(row) - expected = row.as_api_compatibility_row_dict() + expected = row.as_api_row_dict() # assert that the right data came back self.assertEqual(response, { @@ -393,7 +395,7 @@ def test_temporal_partitioning(self): # make the request response = self.request_based_on_row(rows[1], time_values="*") - expected = [rows[1].as_api_compatibility_row_dict()] + expected = [rows[1].as_api_row_dict()] # assert that the right data came back self.assertEqual(response, { diff --git a/integrations/server/test_covidcast_endpoints.py b/integrations/server/test_covidcast_endpoints.py index 3ba0af039..206ed3c54 100644 --- a/integrations/server/test_covidcast_endpoints.py +++ b/integrations/server/test_covidcast_endpoints.py @@ -113,7 +113,34 @@ def test_compatibility(self): with self.subTest("simple"): out = self._fetch("/", signal=first.signal_pair(), geo=first.geo_pair(), time="day:*", is_compatibility=True) - self.assertEqual(len(out["epidata"]), len(rows)) + self.assertEqual(out["epidata"], [row.as_api_compatibility_row_dict() for row in rows]) + + with self.subTest("same contents sans excluded columns"): + compat = self._fetch("/", signal=first.signal_pair(), geo=first.geo_pair(), time="day:*", is_compatibility=True) + regular = self._fetch("/", signal=first.signal_pair(), geo=first.geo_pair(), time="day:*") + # Remove keys from the regular row which are excluded in the compat rows + for row in regular['epidata']: + for key in ['source', 'geo_type', 'time_type']: + del row[key] + self.assertEqual(compat, regular) + + def test_compatibility_restricted_source(self): + """Restricted request at the /api.php endpoint.""" + rows = [CovidcastTestRow.make_default_row(time_value=2020_04_01 + i, value=i, source="quidel") for i in range(10)] + first = rows[0] + self._insert_rows(rows) + + with self.subTest("no_roles"): + out = self._fetch("/", signal=first.signal_pair(), geo=first.geo_pair(), time="day:*", is_compatibility=True) + self.assertTrue("epidata" not in out) + + with self.subTest("no_api_key"): + out = self._fetch("/", auth=None, signal=first.signal_pair(), geo=first.geo_pair(), time="day:*", is_compatibility=True) + self.assertTrue("epidata" not in out) + + with self.subTest("quidel_role"): + out = self._fetch("/", auth=("epidata", "quidel_key"), signal=first.signal_pair(), geo=first.geo_pair(), time="day:*", is_compatibility=True) + self.assertEqual(out["epidata"], [row.as_api_compatibility_row_dict() for row in rows]) def test_trend(self): """Request a signal from the /trend endpoint.""" diff --git a/integrations/server/test_covidcast_meta.py b/integrations/server/test_covidcast_meta.py index d03317c98..857422a41 100644 --- a/integrations/server/test_covidcast_meta.py +++ b/integrations/server/test_covidcast_meta.py @@ -14,7 +14,7 @@ import delphi.operations.secrets as secrets # use the local instance of the Epidata API -BASE_URL = 'http://delphi_web_epidata/epidata/api.php' +BASE_URL = 'http://delphi_web_epidata/epidata' AUTH = ('epidata', 'key') @@ -152,8 +152,7 @@ def _get_id(self): @staticmethod def _fetch(auth=AUTH, **kwargs): params = kwargs.copy() - params['endpoint'] = 'covidcast_meta' - response = requests.get(BASE_URL, params=params, auth=auth) + response = requests.get(f"{BASE_URL}/covidcast_meta", params=params, auth=auth) response.raise_for_status() return response.json() diff --git a/integrations/server/test_covidcast_nowcast.py b/integrations/server/test_covidcast_nowcast.py index 889d962dd..32445afdf 100644 --- a/integrations/server/test_covidcast_nowcast.py +++ b/integrations/server/test_covidcast_nowcast.py @@ -9,7 +9,7 @@ # use the local instance of the Epidata API -BASE_URL = 'http://delphi_web_epidata/epidata/api.php' +BASE_URL = 'http://delphi_web_epidata/epidata' AUTH = ('epidata', 'key') @@ -43,7 +43,7 @@ def tearDown(self): @staticmethod def _make_request(params: dict): - response = requests.get(BASE_URL, params=params, auth=AUTH) + response = requests.get(f"{BASE_URL}/covidcast_nowcast", params=params, auth=AUTH) response.raise_for_status() return response.json() @@ -59,7 +59,6 @@ def test_query(self): self.cnx.commit() # make the request with specified issue date params={ - 'source': 'covidcast_nowcast', 'data_source': 'src', 'signals': 'sig', 'sensor_names': 'sensor', diff --git a/integrations/server/test_fluview.py b/integrations/server/test_fluview.py index c192da637..48d9585fd 100644 --- a/integrations/server/test_fluview.py +++ b/integrations/server/test_fluview.py @@ -18,7 +18,7 @@ def setUpClass(cls): """Perform one-time setup.""" # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') def setUp(self): diff --git a/integrations/server/test_fluview_meta.py b/integrations/server/test_fluview_meta.py index 1e2cf73e3..6f81c1859 100644 --- a/integrations/server/test_fluview_meta.py +++ b/integrations/server/test_fluview_meta.py @@ -18,7 +18,7 @@ def setUpClass(cls): """Perform one-time setup.""" # use the local instance of the Epidata API - Epidata.BASE_URL = 'http://delphi_web_epidata/epidata/api.php' + Epidata.BASE_URL = 'http://delphi_web_epidata/epidata' Epidata.auth = ('epidata', 'key') def setUp(self): diff --git a/integrations/server/test_signal_dashboard.py b/integrations/server/test_signal_dashboard.py index e99a464fd..1aed3eec6 100644 --- a/integrations/server/test_signal_dashboard.py +++ b/integrations/server/test_signal_dashboard.py @@ -25,10 +25,7 @@ def setUp(self) -> None: def test_signal_dashboard_coverage(self): """Basic integration test for signal_dashboard_coverage endpoint""" - params = { - "endpoint": "signal_dashboard_coverage", - } - response = self.epidata_client._request(params=params) + response = self.epidata_client._request("signal_dashboard_coverage") self.assertEqual( response, { @@ -41,10 +38,7 @@ def test_signal_dashboard_coverage(self): def test_signal_dashboard_status(self): """Basic integration test for signal_dashboard_status endpoint""" - params = { - "endpoint": "signal_dashboard_status", - } - response = self.epidata_client._request(params=params) + response = self.epidata_client._request("signal_dashboard_status") self.assertEqual( response, { diff --git a/requirements.api.txt b/requirements.api.txt index 10fed2eec..d2c47f64b 100644 --- a/requirements.api.txt +++ b/requirements.api.txt @@ -1,8 +1,7 @@ delphi_utils==0.3.15 epiweeks==2.1.2 -Flask==2.2.2 +Flask==2.2.5 Flask-Limiter==3.3.0 -itsdangerous<2.1 jinja2==3.0.3 more_itertools==8.4.0 mysqlclient==2.1.1 diff --git a/src/client/delphi_epidata.R b/src/client/delphi_epidata.R index e32e53ba6..0dc1063e0 100644 --- a/src/client/delphi_epidata.R +++ b/src/client/delphi_epidata.R @@ -15,7 +15,7 @@ Epidata <- (function() { # API base url BASE_URL <- getOption('epidata.url', default = 'https://api.delphi.cmu.edu/epidata/') - client_version <- '4.1.10' + client_version <- '4.1.11' auth <- getOption("epidata.auth", default = NA) diff --git a/src/client/delphi_epidata.js b/src/client/delphi_epidata.js index 27fd7c31a..1c8927a38 100644 --- a/src/client/delphi_epidata.js +++ b/src/client/delphi_epidata.js @@ -22,7 +22,7 @@ } })(this, function (exports, fetchImpl, jQuery) { const BASE_URL = "https://api.delphi.cmu.edu/epidata/"; - const client_version = "4.1.10"; + const client_version = "4.1.11"; // Helper function to cast values and/or ranges to strings function _listitem(value) { diff --git a/src/client/delphi_epidata.py b/src/client/delphi_epidata.py index fe8dbe51d..99d8f4abc 100644 --- a/src/client/delphi_epidata.py +++ b/src/client/delphi_epidata.py @@ -44,7 +44,7 @@ class Epidata: """An interface to DELPHI's Epidata API.""" # API base url - BASE_URL = "https://api.delphi.cmu.edu/epidata/api.php" + BASE_URL = "https://api.delphi.cmu.edu/epidata" auth = None client_version = _version @@ -68,17 +68,18 @@ def _list(values): @staticmethod @retry(reraise=True, stop=stop_after_attempt(2)) - def _request_with_retry(params): + def _request_with_retry(endpoint, params={}): """Make request with a retry if an exception is thrown.""" - req = requests.get(Epidata.BASE_URL, params, auth=Epidata.auth, headers=_HEADERS) + request_url = f"{Epidata.BASE_URL}/{endpoint}" + req = requests.get(request_url, params, auth=Epidata.auth, headers=_HEADERS) if req.status_code == 414: - req = requests.post(Epidata.BASE_URL, params, auth=Epidata.auth, headers=_HEADERS) + req = requests.post(request_url, params, auth=Epidata.auth, headers=_HEADERS) # handle 401 and 429 req.raise_for_status() return req @staticmethod - def _request(params): + def _request(endpoint, params={}): """Request and parse epidata. We default to GET since it has better caching and logging @@ -86,7 +87,7 @@ def _request(params): long and returns a 414. """ try: - result = Epidata._request_with_retry(params) + result = Epidata._request_with_retry(endpoint, params) except Exception as e: return {"result": 0, "message": "error: " + str(e)} if params is not None and "format" in params and params["format"] == "csv": @@ -125,7 +126,6 @@ def fluview(regions, epiweeks, issues=None, lag=None, auth=None): raise EpidataBadRequestException(ISSUES_LAG_EXCLUSIVE) # Set up request params = { - "endpoint": "fluview", "regions": Epidata._list(regions), "epiweeks": Epidata._list(epiweeks), } @@ -136,18 +136,13 @@ def fluview(regions, epiweeks, issues=None, lag=None, auth=None): if auth is not None: params["auth"] = auth # Make the API call - return Epidata._request(params) + return Epidata._request("fluview", params) # Fetch FluView metadata @staticmethod def fluview_meta(): """Fetch FluView metadata.""" - # Set up request - params = { - "endpoint": "fluview_meta", - } - # Make the API call - return Epidata._request(params) + return Epidata._request("fluview_meta") # Fetch FluView clinical data @staticmethod @@ -160,7 +155,6 @@ def fluview_clinical(regions, epiweeks, issues=None, lag=None): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "fluview_clinical", "regions": Epidata._list(regions), "epiweeks": Epidata._list(epiweeks), } @@ -169,7 +163,7 @@ def fluview_clinical(regions, epiweeks, issues=None, lag=None): if lag is not None: params["lag"] = lag # Make the API call - return Epidata._request(params) + return Epidata._request("fluview_clinical", params) # Fetch FluSurv data @staticmethod @@ -182,7 +176,6 @@ def flusurv(locations, epiweeks, issues=None, lag=None): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "flusurv", "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), } @@ -191,7 +184,7 @@ def flusurv(locations, epiweeks, issues=None, lag=None): if lag is not None: params["lag"] = lag # Make the API call - return Epidata._request(params) + return Epidata._request("flusurv", params) # Fetch PAHO Dengue data @staticmethod @@ -204,7 +197,6 @@ def paho_dengue(regions, epiweeks, issues=None, lag=None): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "paho_dengue", "regions": Epidata._list(regions), "epiweeks": Epidata._list(epiweeks), } @@ -213,7 +205,7 @@ def paho_dengue(regions, epiweeks, issues=None, lag=None): if lag is not None: params["lag"] = lag # Make the API call - return Epidata._request(params) + return Epidata._request("paho_dengue", params) # Fetch ECDC ILI data @staticmethod @@ -226,7 +218,6 @@ def ecdc_ili(regions, epiweeks, issues=None, lag=None): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "ecdc_ili", "regions": Epidata._list(regions), "epiweeks": Epidata._list(epiweeks), } @@ -235,7 +226,7 @@ def ecdc_ili(regions, epiweeks, issues=None, lag=None): if lag is not None: params["lag"] = lag # Make the API call - return Epidata._request(params) + return Epidata._request("ecdc_ili", params) # Fetch KCDC ILI data @staticmethod @@ -248,7 +239,6 @@ def kcdc_ili(regions, epiweeks, issues=None, lag=None): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "kcdc_ili", "regions": Epidata._list(regions), "epiweeks": Epidata._list(epiweeks), } @@ -257,7 +247,7 @@ def kcdc_ili(regions, epiweeks, issues=None, lag=None): if lag is not None: params["lag"] = lag # Make the API call - return Epidata._request(params) + return Epidata._request("kcdc_ili", params) # Fetch Google Flu Trends data @staticmethod @@ -268,12 +258,11 @@ def gft(locations, epiweeks): raise EpidataBadRequestException(LOCATIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "gft", "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), } # Make the API call - return Epidata._request(params) + return Epidata._request("gft", params) # Fetch Google Health Trends data @staticmethod @@ -286,14 +275,13 @@ def ght(auth, locations, epiweeks, query): ) # Set up request params = { - "endpoint": "ght", "auth": auth, "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), "query": query, } # Make the API call - return Epidata._request(params) + return Epidata._request("ght", params) # Fetch HealthTweets data @staticmethod @@ -306,7 +294,6 @@ def twitter(auth, locations, dates=None, epiweeks=None): raise EpidataBadRequestException("exactly one of `dates` and `epiweeks` is required") # Set up request params = { - "endpoint": "twitter", "auth": auth, "locations": Epidata._list(locations), } @@ -315,7 +302,7 @@ def twitter(auth, locations, dates=None, epiweeks=None): if epiweeks is not None: params["epiweeks"] = Epidata._list(epiweeks) # Make the API call - return Epidata._request(params) + return Epidata._request("twitter", params) # Fetch Wikipedia access data @staticmethod @@ -328,7 +315,6 @@ def wiki(articles, dates=None, epiweeks=None, hours=None, language="en"): raise EpidataBadRequestException("exactly one of `dates` and `epiweeks` is required") # Set up request params = { - "endpoint": "wiki", "articles": Epidata._list(articles), "language": language, } @@ -339,7 +325,7 @@ def wiki(articles, dates=None, epiweeks=None, hours=None, language="en"): if hours is not None: params["hours"] = Epidata._list(hours) # Make the API call - return Epidata._request(params) + return Epidata._request("wiki", params) # Fetch CDC page hits @staticmethod @@ -350,13 +336,12 @@ def cdc(auth, epiweeks, locations): raise EpidataBadRequestException("`auth`, `epiweeks`, and `locations` are all required") # Set up request params = { - "endpoint": "cdc", "auth": auth, "epiweeks": Epidata._list(epiweeks), "locations": Epidata._list(locations), } # Make the API call - return Epidata._request(params) + return Epidata._request("cdc", params) # Fetch Quidel data @staticmethod @@ -367,13 +352,12 @@ def quidel(auth, epiweeks, locations): raise EpidataBadRequestException("`auth`, `epiweeks`, and `locations` are all required") # Set up request params = { - "endpoint": "quidel", "auth": auth, "epiweeks": Epidata._list(epiweeks), "locations": Epidata._list(locations), } # Make the API call - return Epidata._request(params) + return Epidata._request("quidel", params) # Fetch NoroSTAT data (point data, no min/max) @staticmethod @@ -384,13 +368,12 @@ def norostat(auth, location, epiweeks): raise EpidataBadRequestException("`auth`, `location`, and `epiweeks` are all required") # Set up request params = { - "endpoint": "norostat", "auth": auth, "location": location, "epiweeks": Epidata._list(epiweeks), } # Make the API call - return Epidata._request(params) + return Epidata._request("norostat", params) # Fetch NoroSTAT metadata @staticmethod @@ -401,11 +384,10 @@ def meta_norostat(auth): raise EpidataBadRequestException("`auth` is required") # Set up request params = { - "endpoint": "meta_norostat", "auth": auth, } # Make the API call - return Epidata._request(params) + return Epidata._request("meta_norostat", params) # Fetch NIDSS flu data @staticmethod @@ -418,7 +400,6 @@ def nidss_flu(regions, epiweeks, issues=None, lag=None): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "nidss_flu", "regions": Epidata._list(regions), "epiweeks": Epidata._list(epiweeks), } @@ -427,7 +408,7 @@ def nidss_flu(regions, epiweeks, issues=None, lag=None): if lag is not None: params["lag"] = lag # Make the API call - return Epidata._request(params) + return Epidata._request("nidss_flu", params) # Fetch NIDSS dengue data @staticmethod @@ -438,12 +419,11 @@ def nidss_dengue(locations, epiweeks): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "nidss_dengue", "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), } # Make the API call - return Epidata._request(params) + return Epidata._request("nidss_dengue", params) # Fetch Delphi's forecast @staticmethod @@ -454,12 +434,11 @@ def delphi(system, epiweek): raise EpidataBadRequestException("`system` and `epiweek` are both required") # Set up request params = { - "endpoint": "delphi", "system": system, "epiweek": epiweek, } # Make the API call - return Epidata._request(params) + return Epidata._request("delphi", params) # Fetch Delphi's digital surveillance sensors @staticmethod @@ -472,7 +451,6 @@ def sensors(auth, names, locations, epiweeks): ) # Set up request params = { - "endpoint": "sensors", "names": Epidata._list(names), "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), @@ -480,7 +458,7 @@ def sensors(auth, names, locations, epiweeks): if auth is not None: params["auth"] = auth # Make the API call - return Epidata._request(params) + return Epidata._request("sensors", params) # Fetch Delphi's dengue digital surveillance sensors @staticmethod @@ -493,14 +471,13 @@ def dengue_sensors(auth, names, locations, epiweeks): ) # Set up request params = { - "endpoint": "dengue_sensors", "auth": auth, "names": Epidata._list(names), "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), } # Make the API call - return Epidata._request(params) + return Epidata._request("dengue_sensors", params) # Fetch Delphi's wILI nowcast @staticmethod @@ -511,12 +488,11 @@ def nowcast(locations, epiweeks): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "nowcast", "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), } # Make the API call - return Epidata._request(params) + return Epidata._request("nowcast", params) # Fetch Delphi's dengue nowcast @staticmethod @@ -527,18 +503,17 @@ def dengue_nowcast(locations, epiweeks): raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "dengue_nowcast", "locations": Epidata._list(locations), "epiweeks": Epidata._list(epiweeks), } # Make the API call - return Epidata._request(params) + return Epidata._request("dengue_nowcast", params) # Fetch API metadata @staticmethod def meta(): """Fetch API metadata.""" - return Epidata._request({"endpoint": "meta"}) + return Epidata._request("meta") # Fetch Delphi's COVID-19 Surveillance Streams @staticmethod @@ -568,7 +543,6 @@ def covidcast( raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "endpoint": "covidcast", "data_source": data_source, "signals": Epidata._list(signals), "time_type": time_type, @@ -594,13 +568,13 @@ def covidcast( params["fields"] = kwargs["fields"] # Make the API call - return Epidata._request(params) + return Epidata._request("covidcast", params) # Fetch Delphi's COVID-19 Surveillance Streams metadata @staticmethod def covidcast_meta(): """Fetch Delphi's COVID-19 Surveillance Streams metadata""" - return Epidata._request({"endpoint": "covidcast_meta"}) + return Epidata._request("covidcast_meta") # Fetch COVID hospitalization data @staticmethod @@ -611,7 +585,6 @@ def covid_hosp(states, dates, issues=None, as_of=None): raise EpidataBadRequestException("`states` and `dates` are both required") # Set up request params = { - "endpoint": "covid_hosp", "states": Epidata._list(states), "dates": Epidata._list(dates), } @@ -620,7 +593,7 @@ def covid_hosp(states, dates, issues=None, as_of=None): if as_of is not None: params["as_of"] = as_of # Make the API call - return Epidata._request(params) + return Epidata._request("covid_hosp_state_timeseries", params) # Fetch COVID hospitalization data for specific facilities @staticmethod @@ -633,21 +606,20 @@ def covid_hosp_facility(hospital_pks, collection_weeks, publication_dates=None): ) # Set up request params = { - "source": "covid_hosp_facility", "hospital_pks": Epidata._list(hospital_pks), "collection_weeks": Epidata._list(collection_weeks), } if publication_dates is not None: params["publication_dates"] = Epidata._list(publication_dates) # Make the API call - return Epidata._request(params) + return Epidata._request("covid_hosp_facility", params) # Lookup COVID hospitalization facility identifiers @staticmethod def covid_hosp_facility_lookup(state=None, ccn=None, city=None, zip=None, fips_code=None): """Lookup COVID hospitalization facility identifiers.""" # Set up request - params = {"source": "covid_hosp_facility_lookup"} + params = {} if state is not None: params["state"] = state elif ccn is not None: @@ -663,7 +635,7 @@ def covid_hosp_facility_lookup(state=None, ccn=None, city=None, zip=None, fips_c "one of `state`, `ccn`, `city`, `zip`, or `fips_code` is required" ) # Make the API call - return Epidata._request(params) + return Epidata._request("covid_hosp_facility_lookup", params) # Fetch Delphi's COVID-19 Nowcast sensors @staticmethod @@ -693,7 +665,6 @@ def covidcast_nowcast( raise EpidataBadRequestException(REGIONS_EPIWEEKS_REQUIRED) # Set up request params = { - "source": "covidcast_nowcast", "data_source": data_source, "signals": Epidata._list(signals), "sensor_names": Epidata._list(sensor_names), @@ -717,15 +688,20 @@ def covidcast_nowcast( params["format"] = kwargs["format"] # Make the API call - return Epidata._request(params) + return Epidata._request("covidcast_nowcast", params) @staticmethod def async_epidata(param_list, batch_size=50): - """Make asynchronous Epidata calls for a list of parameters.""" + """[DEPRECATED] Make asynchronous Epidata calls for a list of parameters.""" + + import warnings + warnings.filterwarnings("once", category=DeprecationWarning, module="delphi_epidata") + warnings.warn("Method `Epidata.async_epidata()` is deprecated and will be removed in a future version.", + category=DeprecationWarning) async def async_get(params, session): """Helper function to make Epidata GET requests.""" - async with session.get(Epidata.BASE_URL, params=params) as response: + async with session.get(f"{Epidata.BASE_URL}/api.php", params=params) as response: response.raise_for_status() return await response.json(), params diff --git a/src/client/packaging/npm/package-lock.json b/src/client/packaging/npm/package-lock.json index 243a3a46c..17e0054c2 100644 --- a/src/client/packaging/npm/package-lock.json +++ b/src/client/packaging/npm/package-lock.json @@ -1,12 +1,12 @@ { "name": "delphi_epidata", - "version": "0.4.4", + "version": "4.1.10", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "delphi_epidata", - "version": "0.4.4", + "version": "4.1.10", "license": "MIT", "dependencies": { "cross-fetch": "^3.1.4" @@ -3379,6 +3379,12 @@ "node": ">=6" } }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "node_modules/react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", @@ -3406,6 +3412,12 @@ "node": ">=0.10.0" } }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, "node_modules/resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", @@ -3761,14 +3773,15 @@ } }, "node_modules/tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" }, "engines": { "node": ">=6" @@ -3829,14 +3842,24 @@ } }, "node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true, "engines": { "node": ">= 4.0.0" } }, + "node_modules/url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "node_modules/v8-to-istanbul": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz", @@ -3944,9 +3967,9 @@ } }, "node_modules/word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "engines": { "node": ">=0.10.0" @@ -6666,6 +6689,12 @@ "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "dev": true }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "dev": true + }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", @@ -6687,6 +6716,12 @@ "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", "dev": true }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", + "dev": true + }, "resolve": { "version": "1.20.0", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", @@ -6955,14 +6990,15 @@ } }, "tough-cookie": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz", - "integrity": "sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==", + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.1.3.tgz", + "integrity": "sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw==", "dev": true, "requires": { "psl": "^1.1.33", "punycode": "^2.1.1", - "universalify": "^0.1.2" + "universalify": "^0.2.0", + "url-parse": "^1.5.3" } }, "tr46": { @@ -7005,11 +7041,21 @@ } }, "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.2.0.tgz", + "integrity": "sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==", "dev": true }, + "url-parse": { + "version": "1.5.10", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz", + "integrity": "sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==", + "dev": true, + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, "v8-to-istanbul": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz", @@ -7098,9 +7144,9 @@ } }, "word-wrap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", - "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true }, "wrap-ansi": { diff --git a/src/client/packaging/npm/package.json b/src/client/packaging/npm/package.json index a230227aa..e5430e971 100644 --- a/src/client/packaging/npm/package.json +++ b/src/client/packaging/npm/package.json @@ -2,7 +2,7 @@ "name": "delphi_epidata", "description": "Delphi Epidata API Client", "authors": "Delphi Group", - "version": "4.1.10", + "version": "4.1.11", "license": "MIT", "homepage": "https://github.com/cmu-delphi/delphi-epidata", "bugs": { diff --git a/src/client/packaging/pypi/CHANGELOG.md b/src/client/packaging/pypi/CHANGELOG.md index 414909fe2..ee95128f7 100644 --- a/src/client/packaging/pypi/CHANGELOG.md +++ b/src/client/packaging/pypi/CHANGELOG.md @@ -3,6 +3,18 @@ All notable future changes to the `delphi_epidata` python client will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [4.1.11] - 2023-10-12 + +### Includes +- https://github.com/cmu-delphi/delphi-epidata/pull/1288 + +### Changed +- Internally uses newer endpoint-specific URLs instead of an older compatibility alias URL. +- Upper limit on the number of rows returned per request has been increased to 1M (was 3650). +- Method `Epidata.async_epidata()` is now deprecated and will be removed in a future version. +- The dict object returned from data request methods will now always have an entry for the "`epidata`" key, potentially with an empty list as its value. previously, if there were no results for the request, the "`epidata`" entry was not present. +- Results from the `Epidata.covidcast()` method (or potentially the `covidcast` endpoint via the `async_epidata()` method) will now include the keys "`source`", "`geo_type`", and "`time_type`" (and their associated values). + ## [4.1.10] - 2023-09-28 ### Added diff --git a/src/client/packaging/pypi/delphi_epidata/__init__.py b/src/client/packaging/pypi/delphi_epidata/__init__.py index 220c670cf..e0b24b308 100644 --- a/src/client/packaging/pypi/delphi_epidata/__init__.py +++ b/src/client/packaging/pypi/delphi_epidata/__init__.py @@ -1,4 +1,4 @@ from .delphi_epidata import Epidata name = "delphi_epidata" -__version__ = "4.1.10" +__version__ = "4.1.11" diff --git a/src/client/packaging/pypi/setup.py b/src/client/packaging/pypi/setup.py index 265ca23b4..f469bbd12 100644 --- a/src/client/packaging/pypi/setup.py +++ b/src/client/packaging/pypi/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="delphi_epidata", - version="4.1.10", + version="4.1.11", author="David Farrow", author_email="dfarrow0@gmail.com", description="A programmatic interface to Delphi's Epidata API.", diff --git a/src/common/integration_test_base_class.py b/src/common/integration_test_base_class.py index 387c0f617..47c9f68e4 100644 --- a/src/common/integration_test_base_class.py +++ b/src/common/integration_test_base_class.py @@ -19,7 +19,7 @@ def __init__(self, methodName: str = "runTest") -> None: self.create_tables_list = [] self.role_name = None self.epidata_client = Epidata - self.epidata_client.BASE_URL = "http://delphi_web_epidata/epidata/api.php" + self.epidata_client.BASE_URL = "http://delphi_web_epidata/epidata" self.epidata_client.auth = ("epidata", "key") def create_key_with_role(self, cur, role_name: str): diff --git a/src/maintenance/signal_dash_data_generator.py b/src/maintenance/signal_dash_data_generator.py index 6eea06579..b7f1048f5 100644 --- a/src/maintenance/signal_dash_data_generator.py +++ b/src/maintenance/signal_dash_data_generator.py @@ -19,7 +19,7 @@ LOOKBACK_DAYS_FOR_COVERAGE = 56 -BASE_COVIDCAST = covidcast.covidcast.Epidata.BASE_URL[:-len("api.php")] + "covidcast" +BASE_COVIDCAST = covidcast.covidcast.Epidata.BASE_URL + "/covidcast" COVERAGE_URL = f"{BASE_COVIDCAST}/coverage?format=csv&signal={{source}}:{{signal}}&days={LOOKBACK_DAYS_FOR_COVERAGE}" @dataclass diff --git a/src/server/_config.py b/src/server/_config.py index aa6a09306..30b81c502 100644 --- a/src/server/_config.py +++ b/src/server/_config.py @@ -7,7 +7,7 @@ load_dotenv() -VERSION = "4.1.10" +VERSION = "4.1.11" MAX_RESULTS = int(10e6) MAX_COMPATIBILITY_RESULTS = int(3650) diff --git a/src/server/_params.py b/src/server/_params.py index 134bc400d..5eeb85ec4 100644 --- a/src/server/_params.py +++ b/src/server/_params.py @@ -2,7 +2,7 @@ import re from dataclasses import dataclass from typing import List, Optional, Sequence, Tuple, Union -import delphi_utils +import delphi_utils from flask import request @@ -407,6 +407,8 @@ def parse_date(s: str) -> int: if s == "*": return s else: + if len(s) > 10: # max len of date is 10 (YYYY-MM-DD format) + raise ValueError return int(s.replace("-", "")) except ValueError: raise ValidationFailedException(f"not a valid date: {s}") diff --git a/src/server/endpoints/covidcast_utils/db_signals.csv b/src/server/endpoints/covidcast_utils/db_signals.csv index 4e18d6b50..850a43b8b 100644 --- a/src/server/endpoints/covidcast_utils/db_signals.csv +++ b/src/server/endpoints/covidcast_utils/db_signals.csv @@ -1,854 +1,855 @@ -Source Subdivision,Signal BaseName,base_is_other,Signal,Compute From Base,Name,Active,Short Description,Description,Time Type,Time Label,Value Label,Format,Category,High Values Are,Is Smoothed,Is Weighted,Is Cumulative,Has StdErr,Has Sample Size,Link -chng,smoothed_outpatient_cli,FALSE,smoothed_outpatient_cli,FALSE,COVID-Related Doctor Visits,TRUE,Estimated percentage of outpatient doctor visits primarily about COVID-related symptoms,"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",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/chng.html -chng,smoothed_outpatient_cli,TRUE,smoothed_adj_outpatient_cli,FALSE,{base_name} (Day-adjusted),TRUE,,"{base_description}, and adjusted to reduce day-of-week effects",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -chng,smoothed_outpatient_covid,FALSE,smoothed_outpatient_covid,FALSE,COVID-Confirmed Doctor Visits,TRUE,COVID-Confirmed Doctor Visits,"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",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/chng.html -chng,smoothed_outpatient_covid,TRUE,smoothed_adj_outpatient_covid,FALSE,{base_name} (Day-adjusted),TRUE,,"{base_description}, and adjusted to reduce day-of-week effects",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -chng,smoothed_outpatient_flu,FALSE,smoothed_outpatient_flu,FALSE,Influenza-Confirmed Doctor Visits,TRUE,Estimated percentage of outpatient doctor visits with confirmed influenza,"Estimated percentage of outpatient doctor visits with confirmed influenza, 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",day,Day,Value,raw,early,bad,TRUE,FALSE,FALSE,,,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/chng.html -chng,smoothed_outpatient_flu,TRUE,smoothed_adj_outpatient_flu,FALSE,{base_name} (Day-adjusted),TRUE,,"{base_description}, and adjusted to reduce day-of-week effects",day,Day,Value,raw,early,bad,TRUE,FALSE,FALSE,,, -covid-act-now,pcr_specimen_positivity_rate,FALSE,pcr_specimen_positivity_rate,FALSE,PCR Test Positivity Rate,FALSE,Proportion of PCR specimens tested that have a positive result,,day,Date,Value,fraction,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/covid-act-now.html -covid-act-now,pcr_specimen_total_tests,FALSE,pcr_specimen_total_tests,FALSE,Total Number of PCR Tests,FALSE,Total number of PCR specimens tested,,day,Date,Value,count,cases_testing,good,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/covid-act-now.html -doctor-visits,smoothed_cli,FALSE,smoothed_cli,FALSE,COVID-Related Doctor Visits,TRUE,Percentage of daily doctor visits that are due to COVID-like symptoms,"Estimated percentage of outpatient doctor visits that are primarily about COVID-related symptoms, based on data from health system partners, smoothed in time using a Gaussian linear smoother",day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/doctor-visits.html -doctor-visits,smoothed_cli,TRUE,smoothed_adj_cli,FALSE,{base_name} (Day-adjusted),TRUE,,"{base_description}, and adjusted to reduce day-of-week effects",day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,FALSE,FALSE, -dsew-cpr,booster_doses_admin_7dav,FALSE,booster_doses_admin_7dav,FALSE,booster_doses_admin_7dav,TRUE,COVID-19 booster vaccine doses administered each day,"{short_description}, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. - -""Doses administered shown by date of report, not date of administration. ... [A] booster dose includes anyone who is fully vaccinated and has received another dose of COVID-19 vaccine since August 13, 2021. This includes people who received booster doses and people who received additional doses."" - from the CPR data dictionary.",day,Day,Value,count,public,good,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html -dsew-cpr,confirmed_admissions_covid_1d_7dav,FALSE,confirmed_admissions_covid_1d_7dav,FALSE,Confirmed COVID Admissions per day,TRUE,All confirmed COVID-19 hospital admissions occurring each day,"{short_description}, based on the daily Community Profile Report published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. - -Other sources of hospital admissions data in COVIDcast include [HHS](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html) and [medical insurance claims](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hospital-admissions.html). The CPR differs from these sources in that it is part of the public health surveillance stream (like HHS, unlike claims) but is available at a daily-county level (like claims, unlike HHS). CPR hospital admissions figures at the state level and above are meant to match those from HHS, but are known to differ. See the [Limitations section of the technical documentation](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html#limitations) for more details.",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html -dsew-cpr,confirmed_admissions_covid_1d_7dav,TRUE,confirmed_admissions_covid_1d_prop_7dav,FALSE,{base_name} (per 100k people),TRUE,,,day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -dsew-cpr,doses_admin_7dav,FALSE,doses_admin_7dav,FALSE,doses_admin_7dav,TRUE,COVID-19 vaccine doses administered each day,"{short_description}, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. - -""Doses administered shown by date of report, not date of administration."" - from the CPR data dictionary.",day,Day,Value,count,public,good,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html -dsew-cpr,people_booster_doses,FALSE,people_booster_doses,FALSE,people_booster_doses,TRUE,Cumulative number of people who have received a booster dose of the COVID-19 vaccine,"{short_description}, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. - -""The count of people who received a booster dose includes anyone who is fully vaccinated and has received another dose of COVID-19 vaccine since 2021-08-13. This includes people who received booster doses and people who received additional doses"" - from the CPR data dictionary.",day,Day,Value,count,public,good,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html -dsew-cpr,people_full_vaccinated,FALSE,people_full_vaccinated,FALSE,people_full_vaccinated,TRUE,Cumulative number of people who have received a full course of the COVID-19 vaccine,"{short_description}, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. - -""People fully vaccinated includes those who have received two doses of the Pfizer-BioNTech or Moderna vaccine and those who have received one dose of the J&J/Janssen vaccine"" - from the CPR data dictionary.",day,Day,Value,count,public,good,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html -fb-survey,raw_wcli,FALSE,raw_wcli,FALSE,COVID-Like Symptoms,TRUE,Estimated percentage of people with COVID-like illness ,"{source_description} For this signal, we estimate the percentage of people self-reporting COVID-like symptoms, defined here as fever along with either cough, shortness of breath, or difficulty breathing. While many other conditions can cause these symptoms, comparing the rates of COVID-like symptoms across the country can suggest where COVID is most active.",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,"[Survey details](https://delphi.cmu.edu/covidcast/surveys/) +Source Subdivision,Signal BaseName,base_is_other,Signal,Compute From Base,Name,Active,Short Description,Description,Source Name,"Pathogen/ +Disease Area",Signal Type,Available Geography,Time Type,Time Label,Value Label,Format,Category,High Values Are,Is Smoothed,Is Weighted,Is Cumulative,Has StdErr,Has Sample Size,Link +chng,smoothed_outpatient_cli,FALSE,smoothed_outpatient_cli,FALSE,COVID-Related Doctor Visits,TRUE,Estimated percentage of outpatient doctor visits primarily about COVID-related symptoms,"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",Change Healthcare,covid,Public behavior,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/chng.html +chng,smoothed_outpatient_cli,TRUE,smoothed_adj_outpatient_cli,FALSE,COVID-Related Doctor Visits (Day-adjusted),TRUE,,"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, and adjusted to reduce day-of-week effects",Change Healthcare,covid,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +chng,smoothed_outpatient_covid,FALSE,smoothed_outpatient_covid,FALSE,COVID-Confirmed Doctor Visits,TRUE,COVID-Confirmed Doctor Visits,"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",Change Healthcare,covid,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/chng.html +chng,smoothed_outpatient_covid,TRUE,smoothed_adj_outpatient_covid,FALSE,COVID-Confirmed Doctor Visits (Day-adjusted),TRUE,,"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, and adjusted to reduce day-of-week effects",Change Healthcare,covid,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +chng,smoothed_outpatient_flu,FALSE,smoothed_outpatient_flu,FALSE,Influenza-Confirmed Doctor Visits,TRUE,Estimated percentage of outpatient doctor visits with confirmed influenza,"Estimated percentage of outpatient doctor visits with confirmed influenza, 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",Change Healthcare,flu,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Day,Value,raw,early,bad,TRUE,FALSE,FALSE,,,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/chng.html +chng,smoothed_outpatient_flu,TRUE,smoothed_adj_outpatient_flu,FALSE,Influenza-Confirmed Doctor Visits (Day-adjusted),TRUE,,"Estimated percentage of outpatient doctor visits with confirmed influenza, 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, and adjusted to reduce day-of-week effects",Change Healthcare,flu,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Day,Value,raw,early,bad,TRUE,FALSE,FALSE,,, +covid-act-now,pcr_specimen_positivity_rate,FALSE,pcr_specimen_positivity_rate,FALSE,PCR Test Positivity Rate,FALSE,Proportion of PCR specimens tested that have a positive result,,Covid Act Now (CAN),covid,Testing,"county,hhs,hrr,msa,nation,state",day,Date,Value,fraction,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/covid-act-now.html +covid-act-now,pcr_specimen_total_tests,FALSE,pcr_specimen_total_tests,FALSE,Total Number of PCR Tests,FALSE,Total number of PCR specimens tested,,Covid Act Now (CAN),covid,Testing,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,good,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/covid-act-now.html +doctor-visits,smoothed_cli,FALSE,smoothed_cli,FALSE,COVID-Related Doctor Visits,TRUE,Percentage of daily doctor visits that are due to COVID-like symptoms,"Estimated percentage of outpatient doctor visits that are primarily about COVID-related symptoms, based on data from health system partners, smoothed in time using a Gaussian linear smoother",Doctor Visits From Claims,covid,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/doctor-visits.html +doctor-visits,smoothed_cli,TRUE,smoothed_adj_cli,FALSE,COVID-Related Doctor Visits (Day-adjusted),TRUE,,"Estimated percentage of outpatient doctor visits that are primarily about COVID-related symptoms, based on data from health system partners, smoothed in time using a Gaussian linear smoother, and adjusted to reduce day-of-week effects",Doctor Visits From Claims,covid,Outpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,FALSE,FALSE, +dsew-cpr,booster_doses_admin_7dav,FALSE,booster_doses_admin_7dav,FALSE,booster_doses_admin_7dav,FALSE,COVID-19 booster vaccine doses administered each day,"COVID-19 booster vaccine doses administered each day, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. + +""Doses administered shown by date of report, not date of administration. ... [A] booster dose includes anyone who is fully vaccinated and has received another dose of COVID-19 vaccine since August 13, 2021. This includes people who received booster doses and people who received additional doses."" - from the CPR data dictionary.",COVID-19 Community Profile Report,covid,Vaccines,"hhs,nation,state",day,Day,Value,count,public,good,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html +dsew-cpr,confirmed_admissions_covid_1d_7dav,FALSE,confirmed_admissions_covid_1d_7dav,FALSE,Confirmed COVID Admissions per day,FALSE,All confirmed COVID-19 hospital admissions occurring each day,"All confirmed COVID-19 hospital admissions occurring each day, based on the daily Community Profile Report published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. + +Other sources of hospital admissions data in COVIDcast include [HHS](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html) and [medical insurance claims](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hospital-admissions.html). The CPR differs from these sources in that it is part of the public health surveillance stream (like HHS, unlike claims) but is available at a daily-county level (like claims, unlike HHS). CPR hospital admissions figures at the state level and above are meant to match those from HHS, but are known to differ. See the [Limitations section of the technical documentation](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html#limitations) for more details.",COVID-19 Community Profile Report,covid,Vaccines,"county,hhs,msa,nation,state",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html +dsew-cpr,confirmed_admissions_covid_1d_7dav,TRUE,confirmed_admissions_covid_1d_prop_7dav,FALSE,Confirmed COVID Admissions per day (per 100k people),FALSE,,,COVID-19 Community Profile Report,covid,Vaccines,"county,hhs,msa,nation,state",day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +dsew-cpr,doses_admin_7dav,FALSE,doses_admin_7dav,FALSE,doses_admin_7dav,FALSE,COVID-19 vaccine doses administered each day,"COVID-19 vaccine doses administered each day, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. + +""Doses administered shown by date of report, not date of administration."" - from the CPR data dictionary.",COVID-19 Community Profile Report,covid,Vaccines,"hhs,nation,state",day,Day,Value,count,public,good,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html +dsew-cpr,people_booster_doses,FALSE,people_booster_doses,FALSE,people_booster_doses,FALSE,Cumulative number of people who have received a booster dose of the COVID-19 vaccine,"Cumulative number of people who have received a booster dose of the COVID-19 vaccine, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. + +""The count of people who received a booster dose includes anyone who is fully vaccinated and has received another dose of COVID-19 vaccine since 2021-08-13. This includes people who received booster doses and people who received additional doses"" - from the CPR data dictionary.",COVID-19 Community Profile Report,covid,Vaccines,"hhs,nation,state",day,Day,Value,count,public,good,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html +dsew-cpr,people_full_vaccinated,FALSE,people_full_vaccinated,FALSE,people_full_vaccinated,FALSE,Cumulative number of people who have received a full course of the COVID-19 vaccine,"Cumulative number of people who have received a full course of the COVID-19 vaccine, based on the daily Community Profile Report (CPR) published by the Data Strategy and Execution Workgroup of the White House COVID-19 Team, smoothed in time with a 7-day average. + +""People fully vaccinated includes those who have received two doses of the Pfizer-BioNTech or Moderna vaccine and those who have received one dose of the J&J/Janssen vaccine"" - from the CPR data dictionary.",COVID-19 Community Profile Report,covid,Vaccines,"county,hhs,msa,nation,state",day,Day,Value,count,public,good,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/dsew-cpr.html +fb-survey,raw_wcli,FALSE,raw_wcli,FALSE,COVID-Like Symptoms,FALSE,Estimated percentage of people with COVID-like illness ,"{source_description} For this signal, we estimate the percentage of people self-reporting COVID-like symptoms, defined here as fever along with either cough, shortness of breath, or difficulty breathing. While many other conditions can cause these symptoms, comparing the rates of COVID-like symptoms across the country can suggest where COVID is most active.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,"[Survey details](https://delphi.cmu.edu/covidcast/surveys/) [Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#ili-and-cli-indicators)" -fb-survey,raw_wcli,TRUE,raw_cli,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_wcli,TRUE,smoothed_cli,FALSE,{base_name} (Unweighted 7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_wcli,TRUE,smoothed_wcli,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, -fb-survey,raw_whh_cmnty_cli,FALSE,raw_whh_cmnty_cli,FALSE,COVID-Like Symptoms in Community,TRUE,Estimated percentage of people reporting illness in their local community,"{source_description} We also ask them if they know anyone in their local community who has COVID-like symptoms, defined here as fever along with either cough, shortness of breath, or difficulty breathing. For this indicator, we estimate the percentage of people who know someone, in their household or outside it, who has these symptoms. While many conditions can cause these symptoms, not just COVID, comparing the rates across the country can suggest where COVID is most active.",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,"[Survey details](https://delphi.cmu.edu/covidcast/surveys/) +fb-survey,raw_wcli,TRUE,raw_cli,FALSE,COVID-Like Symptoms (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_wcli,TRUE,smoothed_cli,FALSE,COVID-Like Symptoms (Unweighted 7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_wcli,TRUE,smoothed_wcli,FALSE,COVID-Like Symptoms (7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, +fb-survey,raw_whh_cmnty_cli,FALSE,raw_whh_cmnty_cli,FALSE,COVID-Like Symptoms in Community,FALSE,Estimated percentage of people reporting illness in their local community,"{source_description} We also ask them if they know anyone in their local community who has COVID-like symptoms, defined here as fever along with either cough, shortness of breath, or difficulty breathing. For this indicator, we estimate the percentage of people who know someone, in their household or outside it, who has these symptoms. While many conditions can cause these symptoms, not just COVID, comparing the rates across the country can suggest where COVID is most active.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,"[Survey details](https://delphi.cmu.edu/covidcast/surveys/) [Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#ili-and-cli-indicators)" -fb-survey,raw_whh_cmnty_cli,TRUE,raw_hh_cmnty_cli,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_whh_cmnty_cli,TRUE,smoothed_hh_cmnty_cli,FALSE,{base_name} (Unweighted 7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_whh_cmnty_cli,TRUE,smoothed_whh_cmnty_cli,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, -fb-survey,raw_wili,FALSE,raw_wili,FALSE,Flu-Like Symptoms,TRUE,Estimated percentage of people with influenza-like illness ,"{source_description} For this signal, we estimate the percentage of people self-reporting influenza-like symptoms, defined here as fever along with either cough or sore throat. While many other conditions can cause these symptoms, comparing the rates of influenza-like symptoms across the country can suggest where the flu is most active.",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#ili-and-cli-indicators -fb-survey,raw_wili,TRUE,raw_ili,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_wili,TRUE,smoothed_ili,FALSE,{base_name} (Unweighted 7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_wili,TRUE,smoothed_wili,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, -fb-survey,raw_wnohh_cmnty_cli,FALSE,raw_wnohh_cmnty_cli,FALSE,COVID-Like Symptoms in Community Outside Household,TRUE,Estimated percentage of people reporting illness in their local community not including their household,"{source_description} We also ask them if they know anyone in their local community who has COVID-like symptoms, defined here as fever along with either cough, shortness of breath, or difficulty breathing. For this indicator, we estimate the percentage of people who know someone outside their household who has these symptoms. While many conditions can cause these symptoms, not just COVID, comparing the rates across the country can suggest where COVID is most active.",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#ili-and-cli-indicators -fb-survey,raw_wnohh_cmnty_cli,TRUE,raw_nohh_cmnty_cli,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_wnohh_cmnty_cli,TRUE,smoothed_nohh_cmnty_cli,FALSE,{base_name} (Unweighted 7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,raw_wnohh_cmnty_cli,TRUE,smoothed_wnohh_cmnty_cli,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, +fb-survey,raw_whh_cmnty_cli,TRUE,raw_hh_cmnty_cli,FALSE,COVID-Like Symptoms in Community (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_whh_cmnty_cli,TRUE,smoothed_hh_cmnty_cli,FALSE,COVID-Like Symptoms in Community (Unweighted 7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_whh_cmnty_cli,TRUE,smoothed_whh_cmnty_cli,FALSE,COVID-Like Symptoms in Community (7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, +fb-survey,raw_wili,FALSE,raw_wili,FALSE,Flu-Like Symptoms,FALSE,Estimated percentage of people with influenza-like illness ,"{source_description} For this signal, we estimate the percentage of people self-reporting influenza-like symptoms, defined here as fever along with either cough or sore throat. While many other conditions can cause these symptoms, comparing the rates of influenza-like symptoms across the country can suggest where the flu is most active.",Delphi US COVID-19 Trends and Impact Survey,flu,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#ili-and-cli-indicators +fb-survey,raw_wili,TRUE,raw_ili,FALSE,Flu-Like Symptoms (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,flu,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_wili,TRUE,smoothed_ili,FALSE,Flu-Like Symptoms (Unweighted 7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,flu,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_wili,TRUE,smoothed_wili,FALSE,Flu-Like Symptoms (7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,flu,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, +fb-survey,raw_wnohh_cmnty_cli,FALSE,raw_wnohh_cmnty_cli,FALSE,COVID-Like Symptoms in Community Outside Household,FALSE,Estimated percentage of people reporting illness in their local community not including their household,"{source_description} We also ask them if they know anyone in their local community who has COVID-like symptoms, defined here as fever along with either cough, shortness of breath, or difficulty breathing. For this indicator, we estimate the percentage of people who know someone outside their household who has these symptoms. While many conditions can cause these symptoms, not just COVID, comparing the rates across the country can suggest where COVID is most active.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#ili-and-cli-indicators +fb-survey,raw_wnohh_cmnty_cli,TRUE,raw_nohh_cmnty_cli,FALSE,COVID-Like Symptoms in Community Outside Household (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,FALSE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_wnohh_cmnty_cli,TRUE,smoothed_nohh_cmnty_cli,FALSE,COVID-Like Symptoms in Community Outside Household (Unweighted 7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,raw_wnohh_cmnty_cli,TRUE,smoothed_wnohh_cmnty_cli,FALSE,COVID-Like Symptoms in Community Outside Household (7-day average),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,early,bad,TRUE,TRUE,FALSE,TRUE,TRUE, fb-survey,smoothed_waccept_covid_vaccine,FALSE,smoothed_waccept_covid_vaccine,FALSE,COVID-19 Vaccine Acceptance,FALSE,"Estimated percentage of respondents who would definitely or probably choose to get vaccinated, if a COVID-19 vaccine were offered to them today.","{source_description} We also ask questions about well-being and various mitigation measures, including vaccine acceptance. For this signal, we estimate the percentage of people who would ""definitely"" or ""probably"" choose to be vaccinated if a COVID vaccine were offered to them today. Note: Until January 6, 2021, all respondents answered this question; beginning on that date, only respondents who said they have not received a COVID vaccine are asked this question. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_waccept_covid_vaccine,TRUE,smoothed_accept_covid_vaccine,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_waccept_covid_vaccine_no_appointment,FALSE,smoothed_waccept_covid_vaccine_no_appointment,FALSE,COVID-19 Vaccine Acceptance Among Unvaccinated,TRUE,"Estimated percentage of respondents who would definitely or probably choose to get vaccinated, if a vaccine were offered to them today, among respondents who have not yet been vaccinated and do not have an appointment to do so.","{short_description} +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_waccept_covid_vaccine,TRUE,smoothed_accept_covid_vaccine,FALSE,COVID-19 Vaccine Acceptance (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_waccept_covid_vaccine_no_appointment,FALSE,smoothed_waccept_covid_vaccine_no_appointment,FALSE,COVID-19 Vaccine Acceptance Among Unvaccinated,FALSE,"Estimated percentage of respondents who would definitely or probably choose to get vaccinated, if a vaccine were offered to them today, among respondents who have not yet been vaccinated and do not have an appointment to do so.","Estimated percentage of respondents who would definitely or probably choose to get vaccinated, if a vaccine were offered to them today, among respondents who have not yet been vaccinated and do not have an appointment to do so. -Based on survey item V3a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_waccept_covid_vaccine_no_appointment,TRUE,smoothed_accept_covid_vaccine_no_appointment,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wanxious_5d,FALSE,smoothed_wanxious_5d,FALSE,Anxious (Last Five Days),FALSE,"Estimated percentage of respondents who reported feeling ""nervous, anxious, or on edge"" for most or all of the past 5 days.","{short_description} +Based on survey item V3a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_waccept_covid_vaccine_no_appointment,TRUE,smoothed_accept_covid_vaccine_no_appointment,FALSE,COVID-19 Vaccine Acceptance Among Unvaccinated (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wanxious_5d,FALSE,smoothed_wanxious_5d,FALSE,Anxious (Last Five Days),FALSE,"Estimated percentage of respondents who reported feeling ""nervous, anxious, or on edge"" for most or all of the past 5 days.","Estimated percentage of respondents who reported feeling ""nervous, anxious, or on edge"" for most or all of the past 5 days. -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wanxious_5d,TRUE,smoothed_anxious_5d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wanxious_7d,FALSE,smoothed_wanxious_7d,FALSE,Anxious (Last Seven Days),TRUE,"Estimated percentage of respondents who reported feeling ""nervous, anxious, or on edge"" for most or all of the past 7 days.","{short_description} +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wanxious_5d,TRUE,smoothed_anxious_5d,FALSE,Anxious (Last Five Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wanxious_7d,FALSE,smoothed_wanxious_7d,FALSE,Anxious (Last Seven Days),FALSE,"Estimated percentage of respondents who reported feeling ""nervous, anxious, or on edge"" for most or all of the past 7 days.","Estimated percentage of respondents who reported feeling ""nervous, anxious, or on edge"" for most or all of the past 7 days. -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wanxious_7d,TRUE,smoothed_anxious_7d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wappointment_not_vaccinated,FALSE,smoothed_wappointment_not_vaccinated,FALSE,COVID-19 Vaccine Appointments Among Unvaccinated,TRUE,"Estimated percentage of respondents who have an appointment to get a COVID-19 vaccine, among respondents who have not yet been vaccinated.","{short_description} +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wanxious_7d,TRUE,smoothed_anxious_7d,FALSE,Anxious (Last Seven Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wappointment_not_vaccinated,FALSE,smoothed_wappointment_not_vaccinated,FALSE,COVID-19 Vaccine Appointments Among Unvaccinated,FALSE,"Estimated percentage of respondents who have an appointment to get a COVID-19 vaccine, among respondents who have not yet been vaccinated.","Estimated percentage of respondents who have an appointment to get a COVID-19 vaccine, among respondents who have not yet been vaccinated. -Based on survey item V11a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wappointment_not_vaccinated,TRUE,smoothed_appointment_not_vaccinated,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wappointment_or_accept_covid_vaccine,FALSE,smoothed_wappointment_or_accept_covid_vaccine,FALSE,COVID-19 Vaccine Acceptance and Appointments Among Unvaccinated,TRUE,"Estimated percentage of respondents who either have an appointment to get a COVID-19 vaccine or would definitely or probably choose to get vaccinated, if a vaccine were offered to them today, among respondents who have not yet been vaccinated","{short_description} +Based on survey item V11a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wappointment_not_vaccinated,TRUE,smoothed_appointment_not_vaccinated,FALSE,COVID-19 Vaccine Appointments Among Unvaccinated (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wappointment_or_accept_covid_vaccine,FALSE,smoothed_wappointment_or_accept_covid_vaccine,FALSE,COVID-19 Vaccine Acceptance and Appointments Among Unvaccinated,FALSE,"Estimated percentage of respondents who either have an appointment to get a COVID-19 vaccine or would definitely or probably choose to get vaccinated, if a vaccine were offered to them today, among respondents who have not yet been vaccinated","Estimated percentage of respondents who either have an appointment to get a COVID-19 vaccine or would definitely or probably choose to get vaccinated, if a vaccine were offered to them today, among respondents who have not yet been vaccinated -Based on survey items V11a and V3a. V11a was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wappointment_or_accept_covid_vaccine,TRUE,smoothed_appointment_or_accept_covid_vaccine,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wbelief_children_immune,FALSE,smoothed_wbelief_children_immune,FALSE,Belief Children Can't Get COVID-19,TRUE,Estimated percentage of people who believe that the statement “Children cannot get COVID-19” is definitely or probably true.,"{short_description} +Based on survey items V11a and V3a. V11a was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wappointment_or_accept_covid_vaccine,TRUE,smoothed_appointment_or_accept_covid_vaccine,FALSE,COVID-19 Vaccine Acceptance and Appointments Among Unvaccinated (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wbelief_children_immune,FALSE,smoothed_wbelief_children_immune,FALSE,Belief Children Can't Get COVID-19,FALSE,Estimated percentage of people who believe that the statement “Children cannot get COVID-19” is definitely or probably true.,"Estimated percentage of people who believe that the statement “Children cannot get COVID-19” is definitely or probably true. -Based on survey item I2. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators -fb-survey,smoothed_wbelief_children_immune,TRUE,smoothed_belief_children_immune,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wbelief_created_small_group,FALSE,smoothed_wbelief_created_small_group,FALSE,Belief COVID-19 Deliberately Created to Manipulate Events,TRUE,Estimated percentage of people who believe that the statement “COVID-19 was deliberately created by a small group of people who secretly manipulate world events” is definitely or probably true.,"{short_description} +Based on survey item I2. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators +fb-survey,smoothed_wbelief_children_immune,TRUE,smoothed_belief_children_immune,FALSE,Belief Children Can't Get COVID-19 (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wbelief_created_small_group,FALSE,smoothed_wbelief_created_small_group,FALSE,Belief COVID-19 Deliberately Created to Manipulate Events,FALSE,Estimated percentage of people who believe that the statement “COVID-19 was deliberately created by a small group of people who secretly manipulate world events” is definitely or probably true.,"Estimated percentage of people who believe that the statement “COVID-19 was deliberately created by a small group of people who secretly manipulate world events” is definitely or probably true. -Based on survey item I3. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators -fb-survey,smoothed_wbelief_created_small_group,TRUE,smoothed_belief_created_small_group,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wbelief_distancing_effective,FALSE,smoothed_wbelief_distancing_effective,FALSE,Belief Social Distancing is Effective,TRUE,Estimated percentage of respondents who believe that social distancing is either very or moderately effective for preventing the spread of COVID-19.,"{short_description} +Based on survey item I3. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators +fb-survey,smoothed_wbelief_created_small_group,TRUE,smoothed_belief_created_small_group,FALSE,Belief COVID-19 Deliberately Created to Manipulate Events (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wbelief_distancing_effective,FALSE,smoothed_wbelief_distancing_effective,FALSE,Belief Social Distancing is Effective,FALSE,Estimated percentage of respondents who believe that social distancing is either very or moderately effective for preventing the spread of COVID-19.,"Estimated percentage of respondents who believe that social distancing is either very or moderately effective for preventing the spread of COVID-19. -Based on survey item G2. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators -fb-survey,smoothed_wbelief_distancing_effective,TRUE,smoothed_belief_distancing_effective,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wbelief_govt_exploitation,FALSE,smoothed_wbelief_govt_exploitation,FALSE,Belief COVID-19 Exploited to Control People,TRUE,Estimated percentage of people who indicate that the statement “The COVID-19 pandemic is being exploited by the government to control people” is definitely or probably true.,"{short_description} +Based on survey item G2. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators +fb-survey,smoothed_wbelief_distancing_effective,TRUE,smoothed_belief_distancing_effective,FALSE,Belief Social Distancing is Effective (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wbelief_govt_exploitation,FALSE,smoothed_wbelief_govt_exploitation,FALSE,Belief COVID-19 Exploited to Control People,FALSE,Estimated percentage of people who indicate that the statement “The COVID-19 pandemic is being exploited by the government to control people” is definitely or probably true.,"Estimated percentage of people who indicate that the statement “The COVID-19 pandemic is being exploited by the government to control people” is definitely or probably true. -Based on survey item I4. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators -fb-survey,smoothed_wbelief_govt_exploitation,TRUE,smoothed_belief_govt_exploitation,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wbelief_masking_effective,FALSE,smoothed_wbelief_masking_effective,FALSE,Belief Masks Are Effective,TRUE,Estimated percentage of respondents who believe that wearing a face mask is either very or moderately effective for preventing the spread of COVID-19.,"{short_description} +Based on survey item I4. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators +fb-survey,smoothed_wbelief_govt_exploitation,TRUE,smoothed_belief_govt_exploitation,FALSE,Belief COVID-19 Exploited to Control People (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wbelief_masking_effective,FALSE,smoothed_wbelief_masking_effective,FALSE,Belief Masks Are Effective,FALSE,Estimated percentage of respondents who believe that wearing a face mask is either very or moderately effective for preventing the spread of COVID-19.,"Estimated percentage of respondents who believe that wearing a face mask is either very or moderately effective for preventing the spread of COVID-19. -Based on survey item G2. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators -fb-survey,smoothed_wbelief_masking_effective,TRUE,smoothed_belief_masking_effective,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wbelief_vaccinated_mask_unnecessary,FALSE,smoothed_wbelief_vaccinated_mask_unnecessary,FALSE,Belief Vaccines Make Masks Unnecessary,TRUE,Estimated percentage of people who believe that the statement “Getting the COVID-19 vaccine means that you can stop wearing a mask around people outside your household” is definitely or probably true.,"{short_description} +Based on survey item G2. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators +fb-survey,smoothed_wbelief_masking_effective,TRUE,smoothed_belief_masking_effective,FALSE,Belief Masks Are Effective (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wbelief_vaccinated_mask_unnecessary,FALSE,smoothed_wbelief_vaccinated_mask_unnecessary,FALSE,Belief Vaccines Make Masks Unnecessary,FALSE,Estimated percentage of people who believe that the statement “Getting the COVID-19 vaccine means that you can stop wearing a mask around people outside your household” is definitely or probably true.,"Estimated percentage of people who believe that the statement “Getting the COVID-19 vaccine means that you can stop wearing a mask around people outside your household” is definitely or probably true. -Based on survey item I1. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators -fb-survey,smoothed_wbelief_vaccinated_mask_unnecessary,TRUE,smoothed_belief_vaccinated_mask_unnecessary,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wcovid_vaccinated,FALSE,smoothed_wcovid_vaccinated,FALSE,COVID-19 Vaccinated,TRUE,Estimated percentage of respondents who have already received a vaccine for COVID-19.,"{short_description} +Based on survey item I1. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#belief-experience-and-information-indicators +fb-survey,smoothed_wbelief_vaccinated_mask_unnecessary,TRUE,smoothed_belief_vaccinated_mask_unnecessary,FALSE,Belief Vaccines Make Masks Unnecessary (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wcovid_vaccinated,FALSE,smoothed_wcovid_vaccinated,FALSE,COVID-19 Vaccinated,FALSE,Estimated percentage of respondents who have already received a vaccine for COVID-19.,"Estimated percentage of respondents who have already received a vaccine for COVID-19. -Note: The Centers for Disease Control compiles data on vaccine administration across the United States. This signal may differ from CDC data because of survey biases and should not be treated as authoritative. However, the survey signal is not subject to the lags and reporting problems in official vaccination data.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wcovid_vaccinated,TRUE,smoothed_covid_vaccinated,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wcovid_vaccinated_appointment_or_accept,FALSE,smoothed_wcovid_vaccinated_appointment_or_accept,FALSE,"COVID-19 Vaccine Acceptance: Vaccinated, Appointment, or Accept",TRUE,"Estimated percentage of respondents who either have already received a COVID vaccine, have an appointment to receive a COVID vaccine, or would definitely or probably choose to receive one if it were offered to them today.","{short_description} -",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,"[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators) +Note: The Centers for Disease Control compiles data on vaccine administration across the United States. This signal may differ from CDC data because of survey biases and should not be treated as authoritative. However, the survey signal is not subject to the lags and reporting problems in official vaccination data.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wcovid_vaccinated,TRUE,smoothed_covid_vaccinated,FALSE,COVID-19 Vaccinated (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wcovid_vaccinated_appointment_or_accept,FALSE,smoothed_wcovid_vaccinated_appointment_or_accept,FALSE,"COVID-19 Vaccine Acceptance: Vaccinated, Appointment, or Accept",FALSE,"Estimated percentage of respondents who either have already received a COVID vaccine, have an appointment to receive a COVID vaccine, or would definitely or probably choose to receive one if it were offered to them today.","Estimated percentage of respondents who either have already received a COVID vaccine, have an appointment to receive a COVID vaccine, or would definitely or probably choose to receive one if it were offered to them today. +",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,"[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators) [Wave 11 revision updates](https://cmu-delphi.github.io/delphi-epidata/symptom-survey/coding.html#wave-11)" -fb-survey,smoothed_wcovid_vaccinated_appointment_or_accept,TRUE,smoothed_covid_vaccinated_appointment_or_accept,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wcovid_vaccinated_friends,FALSE,smoothed_wcovid_vaccinated_friends,FALSE,Friends and Family Vaccinated,TRUE,Estimated percentage of respondents who report that most of their friends and family have received a COVID-19 vaccine.,"{short_description} - -Based on survey item H3. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wcovid_vaccinated_friends,TRUE,smoothed_covid_vaccinated_friends,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wcovid_vaccinated_or_accept,FALSE,smoothed_wcovid_vaccinated_or_accept,FALSE,COVID-19 Vaccinated or Vaccine Acceptance,FALSE,"Estimated percentage of respondents who either have already received a COVID vaccine or would definitely or probably choose to get vaccinated, if a vaccine were offered to them today.","{short_description} - -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wcovid_vaccinated_or_accept,TRUE,smoothed_covid_vaccinated_or_accept,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdelayed_care_cost,FALSE,smoothed_wdelayed_care_cost,FALSE,Delayed Healthcare Due to Cost,TRUE,Estimated percentage of respondents who have ever delayed or not sought medical care in the past year because of cost.,"{short_description} - -Based on survey item K1. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#medical-care-experiences -fb-survey,smoothed_wdelayed_care_cost,TRUE,smoothed_delayed_care_cost,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdepressed_5d,FALSE,smoothed_wdepressed_5d,FALSE,Depressed (Last Five Days),FALSE,Estimated percentage of respondents who reported feeling depressed for most or all of the past 5 days.,"{short_description} - -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wdepressed_5d,TRUE,smoothed_depressed_5d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdepressed_7d,FALSE,smoothed_wdepressed_7d,FALSE,Depressed (Last Seven Days),TRUE,Estimated percentage of respondents who reported feeling depressed for most or all of the past 7 days.,"{short_description} - -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wdepressed_7d,TRUE,smoothed_depressed_7d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_dont_spend_time,FALSE,smoothed_wdontneed_reason_dont_spend_time,FALSE,Vaccine Not Needed: Do Not Spend Time,TRUE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't spend time with high-risk people,"{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_dont_spend_time,TRUE,smoothed_dontneed_reason_dont_spend_time,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_had_covid,FALSE,smoothed_wdontneed_reason_had_covid,FALSE,Vaccine Not Needed: Had Covid,TRUE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they already had the illness,"{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_had_covid,TRUE,smoothed_dontneed_reason_had_covid,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_not_beneficial,FALSE,smoothed_wdontneed_reason_not_beneficial,FALSE,Vaccine Not Needed: Not Beneficial,TRUE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't think vaccines are beneficial,"{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_not_beneficial,TRUE,smoothed_dontneed_reason_not_beneficial,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_not_high_risk,FALSE,smoothed_wdontneed_reason_not_high_risk,FALSE,Vaccine Not Needed: Not High Risk,TRUE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they are not in a high-risk group,"{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_not_high_risk,TRUE,smoothed_dontneed_reason_not_high_risk,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_not_serious,FALSE,smoothed_wdontneed_reason_not_serious,FALSE,Vaccine Not Needed: Not Serious,TRUE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't believe COVID-19 is a serious illness,"{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_not_serious,TRUE,smoothed_dontneed_reason_not_serious,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_other,FALSE,smoothed_wdontneed_reason_other,FALSE,Vaccine Not Needed: Other,TRUE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine for another reason,"{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_other,TRUE,smoothed_dontneed_reason_other,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wdontneed_reason_precautions,FALSE,smoothed_wdontneed_reason_precautions,FALSE,Vaccine Not Needed: Precautions,TRUE,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they will use other precautions, such as a mask, instead","{short_description}, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary -fb-survey,smoothed_wdontneed_reason_precautions,TRUE,smoothed_dontneed_reason_precautions,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wfelt_isolated_5d,FALSE,smoothed_wfelt_isolated_5d,FALSE,Felt Isolated (Last Five Days),FALSE,"Estimated percentage of respondents who reported feeling ""isolated from others"" for most or all of the past 5 days.","{short_description} - -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wfelt_isolated_5d,TRUE,smoothed_felt_isolated_5d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wfelt_isolated_7d,FALSE,smoothed_wfelt_isolated_7d,FALSE,Felt Isolated (Last Seven Days),FALSE,"Estimated percentage of respondents who reported feeling ""isolated from others"" for most or all of the past 7 days.","{short_description} +fb-survey,smoothed_wcovid_vaccinated_appointment_or_accept,TRUE,smoothed_covid_vaccinated_appointment_or_accept,FALSE,"COVID-19 Vaccine Acceptance: Vaccinated, Appointment, or Accept (Unweighted)",FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wcovid_vaccinated_friends,FALSE,smoothed_wcovid_vaccinated_friends,FALSE,Friends and Family Vaccinated,FALSE,Estimated percentage of respondents who report that most of their friends and family have received a COVID-19 vaccine.,"Estimated percentage of respondents who report that most of their friends and family have received a COVID-19 vaccine. + +Based on survey item H3. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wcovid_vaccinated_friends,TRUE,smoothed_covid_vaccinated_friends,FALSE,Friends and Family Vaccinated (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wcovid_vaccinated_or_accept,FALSE,smoothed_wcovid_vaccinated_or_accept,FALSE,COVID-19 Vaccinated or Vaccine Acceptance,FALSE,"Estimated percentage of respondents who either have already received a COVID vaccine or would definitely or probably choose to get vaccinated, if a vaccine were offered to them today.","Estimated percentage of respondents who either have already received a COVID vaccine or would definitely or probably choose to get vaccinated, if a vaccine were offered to them today. + +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wcovid_vaccinated_or_accept,TRUE,smoothed_covid_vaccinated_or_accept,FALSE,COVID-19 Vaccinated or Vaccine Acceptance (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdelayed_care_cost,FALSE,smoothed_wdelayed_care_cost,FALSE,Delayed Healthcare Due to Cost,FALSE,Estimated percentage of respondents who have ever delayed or not sought medical care in the past year because of cost.,"Estimated percentage of respondents who have ever delayed or not sought medical care in the past year because of cost. + +Based on survey item K1. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#medical-care-experiences +fb-survey,smoothed_wdelayed_care_cost,TRUE,smoothed_delayed_care_cost,FALSE,Delayed Healthcare Due to Cost (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdepressed_5d,FALSE,smoothed_wdepressed_5d,FALSE,Depressed (Last Five Days),FALSE,Estimated percentage of respondents who reported feeling depressed for most or all of the past 5 days.,"Estimated percentage of respondents who reported feeling depressed for most or all of the past 5 days. + +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wdepressed_5d,TRUE,smoothed_depressed_5d,FALSE,Depressed (Last Five Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdepressed_7d,FALSE,smoothed_wdepressed_7d,FALSE,Depressed (Last Seven Days),FALSE,Estimated percentage of respondents who reported feeling depressed for most or all of the past 7 days.,"Estimated percentage of respondents who reported feeling depressed for most or all of the past 7 days. + +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wdepressed_7d,TRUE,smoothed_depressed_7d,FALSE,Depressed (Last Seven Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_dont_spend_time,FALSE,smoothed_wdontneed_reason_dont_spend_time,FALSE,Vaccine Not Needed: Do Not Spend Time,FALSE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't spend time with high-risk people,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't spend time with high-risk people, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_dont_spend_time,TRUE,smoothed_dontneed_reason_dont_spend_time,FALSE,Vaccine Not Needed: Do Not Spend Time (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_had_covid,FALSE,smoothed_wdontneed_reason_had_covid,FALSE,Vaccine Not Needed: Had Covid,FALSE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they already had the illness,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they already had the illness, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_had_covid,TRUE,smoothed_dontneed_reason_had_covid,FALSE,Vaccine Not Needed: Had Covid (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_not_beneficial,FALSE,smoothed_wdontneed_reason_not_beneficial,FALSE,Vaccine Not Needed: Not Beneficial,FALSE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't think vaccines are beneficial,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't think vaccines are beneficial, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_not_beneficial,TRUE,smoothed_dontneed_reason_not_beneficial,FALSE,Vaccine Not Needed: Not Beneficial (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_not_high_risk,FALSE,smoothed_wdontneed_reason_not_high_risk,FALSE,Vaccine Not Needed: Not High Risk,FALSE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they are not in a high-risk group,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they are not in a high-risk group, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_not_high_risk,TRUE,smoothed_dontneed_reason_not_high_risk,FALSE,Vaccine Not Needed: Not High Risk (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_not_serious,FALSE,smoothed_wdontneed_reason_not_serious,FALSE,Vaccine Not Needed: Not Serious,FALSE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't believe COVID-19 is a serious illness,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they don't believe COVID-19 is a serious illness, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_not_serious,TRUE,smoothed_dontneed_reason_not_serious,FALSE,Vaccine Not Needed: Not Serious (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_other,FALSE,smoothed_wdontneed_reason_other,FALSE,Vaccine Not Needed: Other,FALSE,Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine for another reason,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine for another reason, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_other,TRUE,smoothed_dontneed_reason_other,FALSE,Vaccine Not Needed: Other (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wdontneed_reason_precautions,FALSE,smoothed_wdontneed_reason_precautions,FALSE,Vaccine Not Needed: Precautions,FALSE,"Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they will use other precautions, such as a mask, instead","Estimated percentage of respondents who say they don't need to get a COVID-19 vaccine because they will use other precautions, such as a mask, instead, among respondents who provided at least one reason for why they believe a COVID-19 vaccine is unnecessary.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-believing-vaccine-is-unnecessary +fb-survey,smoothed_wdontneed_reason_precautions,TRUE,smoothed_dontneed_reason_precautions,FALSE,Vaccine Not Needed: Precautions (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wfelt_isolated_5d,FALSE,smoothed_wfelt_isolated_5d,FALSE,Felt Isolated (Last Five Days),FALSE,"Estimated percentage of respondents who reported feeling ""isolated from others"" for most or all of the past 5 days.","Estimated percentage of respondents who reported feeling ""isolated from others"" for most or all of the past 5 days. + +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wfelt_isolated_5d,TRUE,smoothed_felt_isolated_5d,FALSE,Felt Isolated (Last Five Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wfelt_isolated_7d,FALSE,smoothed_wfelt_isolated_7d,FALSE,Felt Isolated (Last Seven Days),FALSE,"Estimated percentage of respondents who reported feeling ""isolated from others"" for most or all of the past 7 days.","Estimated percentage of respondents who reported feeling ""isolated from others"" for most or all of the past 7 days. This item was shown to respondents starting in Wave 10, March 2, 2021. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wfelt_isolated_7d,TRUE,smoothed_felt_isolated_7d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whad_covid_ever,FALSE,smoothed_whad_covid_ever,FALSE,Ever Had COVID-19,TRUE,Estimated percentage of people who report having ever had COVID-19.,"{short_description} +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wfelt_isolated_7d,TRUE,smoothed_felt_isolated_7d,FALSE,Felt Isolated (Last Seven Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whad_covid_ever,FALSE,smoothed_whad_covid_ever,FALSE,Ever Had COVID-19,TRUE,Estimated percentage of people who report having ever had COVID-19.,"Estimated percentage of people who report having ever had COVID-19. -Based on survey item B13. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,late,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators -fb-survey,smoothed_whad_covid_ever,TRUE,smoothed_had_covid_ever,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_allergic,FALSE,smoothed_whesitancy_reason_allergic,FALSE,Vaccine Hesitancy: Allergic,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about having an allergic reaction,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +Based on survey item B13. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,late,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators +fb-survey,smoothed_whad_covid_ever,TRUE,smoothed_had_covid_ever,FALSE,Ever Had COVID-19 (Unweighted),TRUE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_allergic,FALSE,smoothed_whesitancy_reason_allergic,FALSE,Vaccine Hesitancy: Allergic,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about having an allergic reaction,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about having an allergic reaction, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. This item was shown to respondents starting in Wave 8, February 8, 2021. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_allergic,TRUE,smoothed_hesitancy_reason_allergic,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_cost,FALSE,smoothed_whesitancy_reason_cost,FALSE,Vaccine Hesitancy: Cost,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about the cost,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_allergic,TRUE,smoothed_hesitancy_reason_allergic,FALSE,Vaccine Hesitancy: Allergic (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_cost,FALSE,smoothed_whesitancy_reason_cost,FALSE,Vaccine Hesitancy: Cost,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about the cost,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about the cost, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_cost,TRUE,smoothed_hesitancy_reason_cost,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_dislike_vaccines,FALSE,smoothed_whesitancy_reason_dislike_vaccines,FALSE,Vaccine Hesitancy: Dislike Vaccines,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they dislike vaccines,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_cost,TRUE,smoothed_hesitancy_reason_cost,FALSE,Vaccine Hesitancy: Cost (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_dislike_vaccines,FALSE,smoothed_whesitancy_reason_dislike_vaccines,FALSE,Vaccine Hesitancy: Dislike Vaccines,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they dislike vaccines,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they dislike vaccines, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_dislike_vaccines,TRUE,smoothed_hesitancy_reason_dislike_vaccines,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_dislike_vaccines_generally,FALSE,smoothed_whesitancy_reason_dislike_vaccines_generally,FALSE,Vaccine Hesitance: Dislike Vaccines Generally,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they dislike vaccines generally,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_dislike_vaccines,TRUE,smoothed_hesitancy_reason_dislike_vaccines,FALSE,Vaccine Hesitancy: Dislike Vaccines (Unweighted),TRUE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_dislike_vaccines_generally,FALSE,smoothed_whesitancy_reason_dislike_vaccines_generally,FALSE,Vaccine Hesitance: Dislike Vaccines Generally,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they dislike vaccines generally,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they dislike vaccines generally, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_dislike_vaccines_generally,TRUE,smoothed_hesitancy_reason_dislike_vaccines_generally,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,neutral,TRUE,,,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_distrust_gov,FALSE,smoothed_whesitancy_reason_distrust_gov,FALSE,Vaccine Hesitancy: Distrust Government,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't trust the government,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_dislike_vaccines_generally,TRUE,smoothed_hesitancy_reason_dislike_vaccines_generally,FALSE,Vaccine Hesitance: Dislike Vaccines Generally (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,neutral,TRUE,,,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_distrust_gov,FALSE,smoothed_whesitancy_reason_distrust_gov,FALSE,Vaccine Hesitancy: Distrust Government,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't trust the government,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't trust the government, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_distrust_gov,TRUE,smoothed_hesitancy_reason_distrust_gov,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_distrust_vaccines,FALSE,smoothed_whesitancy_reason_distrust_vaccines,FALSE,Vaccine Hesitancy: Distrust Vaccines,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't trust COVID-19 vaccines,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_distrust_gov,TRUE,smoothed_hesitancy_reason_distrust_gov,FALSE,Vaccine Hesitancy: Distrust Government (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_distrust_vaccines,FALSE,smoothed_whesitancy_reason_distrust_vaccines,FALSE,Vaccine Hesitancy: Distrust Vaccines,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't trust COVID-19 vaccines,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't trust COVID-19 vaccines, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. This item was shown to respondents starting in Wave 8, February 8, 2021. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_distrust_vaccines,TRUE,smoothed_hesitancy_reason_distrust_vaccines,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_health_condition,FALSE,smoothed_whesitancy_reason_health_condition,FALSE,Vaccine Hesitancy: Health Condition,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they have a health condition that may impact the safety of a COVID-19 vaccine,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_distrust_vaccines,TRUE,smoothed_hesitancy_reason_distrust_vaccines,FALSE,Vaccine Hesitancy: Distrust Vaccines (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_health_condition,FALSE,smoothed_whesitancy_reason_health_condition,FALSE,Vaccine Hesitancy: Health Condition,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they have a health condition that may impact the safety of a COVID-19 vaccine,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they have a health condition that may impact the safety of a COVID-19 vaccine, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. This item was shown to respondents starting in Wave 8, February 8, 2021. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_health_condition,TRUE,smoothed_hesitancy_reason_health_condition,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_ineffective,FALSE,smoothed_whesitancy_reason_ineffective,FALSE,Vaccine Hesitancy: Ineffective,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't know if a COVID-19 vaccine will work,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_health_condition,TRUE,smoothed_hesitancy_reason_health_condition,FALSE,Vaccine Hesitancy: Health Condition (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_ineffective,FALSE,smoothed_whesitancy_reason_ineffective,FALSE,Vaccine Hesitancy: Ineffective,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't know if a COVID-19 vaccine will work,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't know if a COVID-19 vaccine will work, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_ineffective,TRUE,smoothed_hesitancy_reason_ineffective,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_low_priority,FALSE,smoothed_whesitancy_reason_low_priority,FALSE,Vaccine Hesitancy: Low Priority,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they think other people need it more than they do,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_ineffective,TRUE,smoothed_hesitancy_reason_ineffective,FALSE,Vaccine Hesitancy: Ineffective (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_low_priority,FALSE,smoothed_whesitancy_reason_low_priority,FALSE,Vaccine Hesitancy: Low Priority,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they think other people need it more than they do,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they think other people need it more than they do, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_low_priority,TRUE,smoothed_hesitancy_reason_low_priority,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_not_recommended,FALSE,smoothed_whesitancy_reason_not_recommended,FALSE,Vaccine Hesitancy: Was Not Recommended,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because their doctor did not recommend it,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_low_priority,TRUE,smoothed_hesitancy_reason_low_priority,FALSE,Vaccine Hesitancy: Low Priority (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_not_recommended,FALSE,smoothed_whesitancy_reason_not_recommended,FALSE,Vaccine Hesitancy: Was Not Recommended,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because their doctor did not recommend it,"Estimated percentage of respondents who say they are hesitant to get vaccinated because their doctor did not recommend it, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. This item was shown to respondents starting in Wave 8, February 8, 2021. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_not_recommended,TRUE,smoothed_hesitancy_reason_not_recommended,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_other,FALSE,smoothed_whesitancy_reason_other,FALSE,Vaccine Hesitancy: Other,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated for another reason,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_not_recommended,TRUE,smoothed_hesitancy_reason_not_recommended,FALSE,Vaccine Hesitancy: Was Not Recommended (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_other,FALSE,smoothed_whesitancy_reason_other,FALSE,Vaccine Hesitancy: Other,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated for another reason,"Estimated percentage of respondents who say they are hesitant to get vaccinated for another reason, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_other,TRUE,smoothed_hesitancy_reason_other,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_pregnant,FALSE,smoothed_whesitancy_reason_pregnant,FALSE,Vaccine Hesitancy: Pregnant,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are pregnant or breastfeeding,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_other,TRUE,smoothed_hesitancy_reason_other,FALSE,Vaccine Hesitancy: Other (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_pregnant,FALSE,smoothed_whesitancy_reason_pregnant,FALSE,Vaccine Hesitancy: Pregnant,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are pregnant or breastfeeding,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they are pregnant or breastfeeding, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. This item was shown to respondents starting in Wave 8, February 8, 2021. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_pregnant,TRUE,smoothed_hesitancy_reason_pregnant,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_religious,FALSE,smoothed_whesitancy_reason_religious,FALSE,Vaccine Hesitancy: Religious,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because it is against their religious beliefs,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_pregnant,TRUE,smoothed_hesitancy_reason_pregnant,FALSE,Vaccine Hesitancy: Pregnant (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_religious,FALSE,smoothed_whesitancy_reason_religious,FALSE,Vaccine Hesitancy: Religious,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because it is against their religious beliefs,"Estimated percentage of respondents who say they are hesitant to get vaccinated because it is against their religious beliefs, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_religious,TRUE,smoothed_hesitancy_reason_religious,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_sideeffects,FALSE,smoothed_whesitancy_reason_sideeffects,FALSE,Vaccine Hesitancy: Side Effects,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about side effects,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_religious,TRUE,smoothed_hesitancy_reason_religious,FALSE,Vaccine Hesitancy: Religious (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_sideeffects,FALSE,smoothed_whesitancy_reason_sideeffects,FALSE,Vaccine Hesitancy: Side Effects,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about side effects,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they are worried about side effects, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_sideeffects,TRUE,smoothed_hesitancy_reason_sideeffects,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_unnecessary,FALSE,smoothed_whesitancy_reason_unnecessary,FALSE,Vaccine Hesitancy: Unnecessary,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't believe they need a COVID-19 vaccine,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_sideeffects,TRUE,smoothed_hesitancy_reason_sideeffects,FALSE,Vaccine Hesitancy: Side Effects (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_unnecessary,FALSE,smoothed_whesitancy_reason_unnecessary,FALSE,Vaccine Hesitancy: Unnecessary,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't believe they need a COVID-19 vaccine,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they don't believe they need a COVID-19 vaccine, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_unnecessary,TRUE,smoothed_hesitancy_reason_unnecessary,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_whesitancy_reason_wait_safety,FALSE,smoothed_whesitancy_reason_wait_safety,FALSE,Vaccine Hesitancy: Wait For Safety,TRUE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they want to wait to see if the COVID-19 vaccines are safe,"{short_description}, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_unnecessary,TRUE,smoothed_hesitancy_reason_unnecessary,FALSE,Vaccine Hesitancy: Unnecessary (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_whesitancy_reason_wait_safety,FALSE,smoothed_whesitancy_reason_wait_safety,FALSE,Vaccine Hesitancy: Wait For Safety,FALSE,Estimated percentage of respondents who say they are hesitant to get vaccinated because they want to wait to see if the COVID-19 vaccines are safe,"Estimated percentage of respondents who say they are hesitant to get vaccinated because they want to wait to see if the COVID-19 vaccines are safe, among respondents who answered ""Yes, probably"", ""No, probably not"", or ""No, definitely not"" when asked if they would get vaccinated if offered. -This item was shown to respondents starting in Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_whesitancy_reason_wait_safety,TRUE,smoothed_hesitancy_reason_wait_safety,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_winperson_school_fulltime,FALSE,smoothed_winperson_school_fulltime,FALSE,In-person School Full-time,TRUE,Estimated percentage of people who had any children attending in-person school on a full-time basis,"{short_description}, among people reporting any pre-K-grade 12 children in their household.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators -fb-survey,smoothed_winperson_school_fulltime,TRUE,smoothed_inperson_school_fulltime,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_winperson_school_fulltime_oldest,FALSE,smoothed_winperson_school_fulltime_oldest,FALSE,In-person School Full-time (Oldest Child),TRUE,Estimated percentage of people whose oldest child is attending in-person school on a full-time basis,"{short_description}, among people reporting any pre-K-grade 12 children in their household. +This item was shown to respondents starting in Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_whesitancy_reason_wait_safety,TRUE,smoothed_hesitancy_reason_wait_safety,FALSE,Vaccine Hesitancy: Wait For Safety (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_winperson_school_fulltime,FALSE,smoothed_winperson_school_fulltime,FALSE,In-person School Full-time,FALSE,Estimated percentage of people who had any children attending in-person school on a full-time basis,"Estimated percentage of people who had any children attending in-person school on a full-time basis, among people reporting any pre-K-grade 12 children in their household.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators +fb-survey,smoothed_winperson_school_fulltime,TRUE,smoothed_inperson_school_fulltime,FALSE,In-person School Full-time (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_winperson_school_fulltime_oldest,FALSE,smoothed_winperson_school_fulltime_oldest,FALSE,In-person School Full-time (Oldest Child),FALSE,Estimated percentage of people whose oldest child is attending in-person school on a full-time basis,"Estimated percentage of people whose oldest child is attending in-person school on a full-time basis, among people reporting any pre-K-grade 12 children in their household. -This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators -fb-survey,smoothed_winperson_school_fulltime_oldest,TRUE,smoothed_inperson_school_fulltime_oldest,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_winperson_school_parttime,FALSE,smoothed_winperson_school_parttime,FALSE,In-person School Part-time,TRUE,Estimated percentage of people who had any children attending in-person school on a part-time basis,"{short_description}, among people reporting any pre-K-grade 12 children in their household.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators -fb-survey,smoothed_winperson_school_parttime,TRUE,smoothed_inperson_school_parttime,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_winperson_school_parttime_oldest,FALSE,smoothed_winperson_school_parttime_oldest,FALSE,In-person School Part-time (Oldest Child),TRUE,Estimated percentage of people whose oldest child is attending in-person school on a part-time basis,"{short_description}, among people reporting any pre-K-grade 12 children in their household. +This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators +fb-survey,smoothed_winperson_school_fulltime_oldest,TRUE,smoothed_inperson_school_fulltime_oldest,FALSE,In-person School Full-time (Oldest Child) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_winperson_school_parttime,FALSE,smoothed_winperson_school_parttime,FALSE,In-person School Part-time,FALSE,Estimated percentage of people who had any children attending in-person school on a part-time basis,"Estimated percentage of people who had any children attending in-person school on a part-time basis, among people reporting any pre-K-grade 12 children in their household.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators +fb-survey,smoothed_winperson_school_parttime,TRUE,smoothed_inperson_school_parttime,FALSE,In-person School Part-time (Unweighted),TRUE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_winperson_school_parttime_oldest,FALSE,smoothed_winperson_school_parttime_oldest,FALSE,In-person School Part-time (Oldest Child),FALSE,Estimated percentage of people whose oldest child is attending in-person school on a part-time basis,"Estimated percentage of people whose oldest child is attending in-person school on a part-time basis, among people reporting any pre-K-grade 12 children in their household. -This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators -fb-survey,smoothed_winperson_school_parttime_oldest,TRUE,smoothed_inperson_school_parttime_oldest,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wlarge_event_1d,FALSE,smoothed_wlarge_event_1d,FALSE,Large Event (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""attended an event with more than 10 people"" in the past 24 hours","{short_description}. +This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#schooling-indicators +fb-survey,smoothed_winperson_school_parttime_oldest,TRUE,smoothed_inperson_school_parttime_oldest,FALSE,In-person School Part-time (Oldest Child) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wlarge_event_1d,FALSE,smoothed_wlarge_event_1d,FALSE,Large Event (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""attended an event with more than 10 people"" in the past 24 hours","Estimated percentage of respondents who ""attended an event with more than 10 people"" in the past 24 hours. This item was shown to respondents starting in Wave 4, September 8, 2020. -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wlarge_event_1d,TRUE,smoothed_large_event_1d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wlarge_event_indoors_1d,FALSE,smoothed_wlarge_event_indoors_1d,FALSE,Large Event Indoors (Last 24 Hours),TRUE,"Estimated percentage of respondents who ""attended an indoor event with more than 10 people"" in the past 24 hours","{short_description}. +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wlarge_event_1d,TRUE,smoothed_large_event_1d,FALSE,Large Event (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wlarge_event_indoors_1d,FALSE,smoothed_wlarge_event_indoors_1d,FALSE,Large Event Indoors (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""attended an indoor event with more than 10 people"" in the past 24 hours","Estimated percentage of respondents who ""attended an indoor event with more than 10 people"" in the past 24 hours. -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wlarge_event_indoors_1d,TRUE,smoothed_large_event_indoors_1d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wothers_distanced_public,FALSE,smoothed_wothers_distanced_public,FALSE,Other People Socially Distanced,TRUE,Estimated percentage of respondents who reported that all or most people they enountered in public in the past 7 days maintained a distance of at least 6 feet.,"{short_description} Respondents who said that they have not been in public for the past 7 days are excluded. +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wlarge_event_indoors_1d,TRUE,smoothed_large_event_indoors_1d,FALSE,Large Event Indoors (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wothers_distanced_public,FALSE,smoothed_wothers_distanced_public,FALSE,Other People Socially Distanced,FALSE,Estimated percentage of respondents who reported that all or most people they enountered in public in the past 7 days maintained a distance of at least 6 feet.,"Estimated percentage of respondents who reported that all or most people they enountered in public in the past 7 days maintained a distance of at least 6 feet. Respondents who said that they have not been in public for the past 7 days are excluded. -Based on survey item H1. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wothers_distanced_public,TRUE,smoothed_others_distanced_public,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wothers_masked,FALSE,smoothed_wothers_masked,FALSE,Other People Masked When Not Distanced,FALSE,"Estimated percentage of respondents who say that most or all other people wear masks, when they are in public and social distancing is not possible. ","{short_description} +Based on survey item H1. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wothers_distanced_public,TRUE,smoothed_others_distanced_public,FALSE,Other People Socially Distanced (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wothers_masked,FALSE,smoothed_wothers_masked,FALSE,Other People Masked When Not Distanced,FALSE,"Estimated percentage of respondents who say that most or all other people wear masks, when they are in public and social distancing is not possible. ","Estimated percentage of respondents who say that most or all other people wear masks, when they are in public and social distancing is not possible. This item was shown to respondents starting in Wave 5, November 24, 2020. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use -fb-survey,smoothed_wothers_masked,TRUE,smoothed_others_masked,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wothers_masked_public,FALSE,smoothed_wothers_masked_public,FALSE,Other People Masked,TRUE,"Estimated percentage of respondents who say that most or all other people wear masks, when they are in public.","{short_description} Respondents who said that they have not been in public for the past 7 days are excluded. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use +fb-survey,smoothed_wothers_masked,TRUE,smoothed_others_masked,FALSE,Other People Masked When Not Distanced (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wothers_masked_public,FALSE,smoothed_wothers_masked_public,FALSE,Other People Masked,FALSE,"Estimated percentage of respondents who say that most or all other people wear masks, when they are in public.","Estimated percentage of respondents who say that most or all other people wear masks, when they are in public. Respondents who said that they have not been in public for the past 7 days are excluded. -Based on survey item H2. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use -fb-survey,smoothed_wothers_masked_public,TRUE,smoothed_others_masked_public,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wpublic_transit_1d,FALSE,smoothed_wpublic_transit_1d,FALSE,Public Transit (Last 24 Hours),TRUE,"Estimated percentage of respondents who ""used public transit"" in the past 24 hours ","{short_description} +Based on survey item H2. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use +fb-survey,smoothed_wothers_masked_public,TRUE,smoothed_others_masked_public,FALSE,Other People Masked (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wpublic_transit_1d,FALSE,smoothed_wpublic_transit_1d,FALSE,Public Transit (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""used public transit"" in the past 24 hours ","Estimated percentage of respondents who ""used public transit"" in the past 24 hours -This item was shown to respondents starting in Wave 4, September 8, 2020.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wpublic_transit_1d,TRUE,smoothed_public_transit_1d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wrace_treated_fairly_healthcare,FALSE,smoothed_wrace_treated_fairly_healthcare,FALSE,Race Treated Fairly in Healthcare,TRUE,Estimated percentage of respondents who somewhat or strongly agree that people of their race are treated fairly in a healthcare setting.,"{short_description} +This item was shown to respondents starting in Wave 4, September 8, 2020.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wpublic_transit_1d,TRUE,smoothed_public_transit_1d,FALSE,Public Transit (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wrace_treated_fairly_healthcare,FALSE,smoothed_wrace_treated_fairly_healthcare,FALSE,Race Treated Fairly in Healthcare,FALSE,Estimated percentage of respondents who somewhat or strongly agree that people of their race are treated fairly in a healthcare setting.,"Estimated percentage of respondents who somewhat or strongly agree that people of their race are treated fairly in a healthcare setting. -Based on survey item K2. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#medical-care-experiences -fb-survey,smoothed_wrace_treated_fairly_healthcare,TRUE,smoothed_race_treated_fairly_healthcare,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_2_vaccine_doses,FALSE,smoothed_wreceived_2_vaccine_doses,FALSE,Received 2 Vaccine Doses,TRUE,Estimated percentage of respondents who have received two doses of a COVID-19 vaccine,"{short_description}, among respondents who have received either one or two doses of a COVID-19 vaccine. +Based on survey item K2. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#medical-care-experiences +fb-survey,smoothed_wrace_treated_fairly_healthcare,TRUE,smoothed_race_treated_fairly_healthcare,FALSE,Race Treated Fairly in Healthcare (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_2_vaccine_doses,FALSE,smoothed_wreceived_2_vaccine_doses,FALSE,Received 2 Vaccine Doses,FALSE,Estimated percentage of respondents who have received two doses of a COVID-19 vaccine,"Estimated percentage of respondents who have received two doses of a COVID-19 vaccine, among respondents who have received either one or two doses of a COVID-19 vaccine. -This item was shown to respondents starting in Wave 7, January 12, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wreceived_2_vaccine_doses,TRUE,smoothed_received_2_vaccine_doses,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_cdc,FALSE,smoothed_wreceived_news_cdc,FALSE,COVID News From CDC,TRUE,Estimated percentage of respondents who received news about COVID-19 from the CDC in the past 7 days.,"{short_description} +This item was shown to respondents starting in Wave 7, January 12, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wreceived_2_vaccine_doses,TRUE,smoothed_received_2_vaccine_doses,FALSE,Received 2 Vaccine Doses (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_cdc,FALSE,smoothed_wreceived_news_cdc,FALSE,COVID News From CDC,FALSE,Estimated percentage of respondents who received news about COVID-19 from the CDC in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from the CDC in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_cdc,TRUE,smoothed_received_news_cdc,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_experts,FALSE,smoothed_wreceived_news_experts,FALSE,COVID News From Scientists,TRUE,Estimated percentage of respondents who received news about COVID-19 from scientists and other health experts in the past 7 days.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_cdc,TRUE,smoothed_received_news_cdc,FALSE,COVID News From CDC (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_experts,FALSE,smoothed_wreceived_news_experts,FALSE,COVID News From Scientists,FALSE,Estimated percentage of respondents who received news about COVID-19 from scientists and other health experts in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from scientists and other health experts in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_experts,TRUE,smoothed_received_news_experts,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_friends,FALSE,smoothed_wreceived_news_friends,FALSE,COVID News From Friends,TRUE,Estimated percentage of respondents who received news about COVID-19 from friends and family in the past 7 days.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_experts,TRUE,smoothed_received_news_experts,FALSE,COVID News From Scientists (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_friends,FALSE,smoothed_wreceived_news_friends,FALSE,COVID News From Friends,FALSE,Estimated percentage of respondents who received news about COVID-19 from friends and family in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from friends and family in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_friends,TRUE,smoothed_received_news_friends,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_govt_health,FALSE,smoothed_wreceived_news_govt_health,FALSE,COVID News From Health Officials,TRUE,Estimated percentage of respondents who received news about COVID-19 from government health authorities or officials in the past 7 days.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_friends,TRUE,smoothed_received_news_friends,FALSE,COVID News From Friends (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_govt_health,FALSE,smoothed_wreceived_news_govt_health,FALSE,COVID News From Health Officials,FALSE,Estimated percentage of respondents who received news about COVID-19 from government health authorities or officials in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from government health authorities or officials in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_govt_health,TRUE,smoothed_received_news_govt_health,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_journalists,FALSE,smoothed_wreceived_news_journalists,FALSE,COVID News From Journalists,TRUE,Estimated percentage of respondents who received news about COVID-19 from journalists in the past 7 days.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_govt_health,TRUE,smoothed_received_news_govt_health,FALSE,COVID News From Health Officials (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_journalists,FALSE,smoothed_wreceived_news_journalists,FALSE,COVID News From Journalists,FALSE,Estimated percentage of respondents who received news about COVID-19 from journalists in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from journalists in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_journalists,TRUE,smoothed_received_news_journalists,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_local_health,FALSE,smoothed_wreceived_news_local_health,FALSE,COVID News From Local Health Workers,TRUE,"Estimated percentage of respondents who received news about COVID-19 from local health workers, clinics, and community organizations in the past 7 days.","{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_journalists,TRUE,smoothed_received_news_journalists,FALSE,COVID News From Journalists (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_local_health,FALSE,smoothed_wreceived_news_local_health,FALSE,COVID News From Local Health Workers,FALSE,"Estimated percentage of respondents who received news about COVID-19 from local health workers, clinics, and community organizations in the past 7 days.","Estimated percentage of respondents who received news about COVID-19 from local health workers, clinics, and community organizations in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_local_health,TRUE,smoothed_received_news_local_health,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_none,FALSE,smoothed_wreceived_news_none,FALSE,COVID News From None of Above,TRUE,Estimated percentage of respondents who in the past 7 days received news about COVID-19 from none of the listed sources in the question.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_local_health,TRUE,smoothed_received_news_local_health,FALSE,COVID News From Local Health Workers (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_none,FALSE,smoothed_wreceived_news_none,FALSE,COVID News From None of Above,FALSE,Estimated percentage of respondents who in the past 7 days received news about COVID-19 from none of the listed sources in the question.,"Estimated percentage of respondents who in the past 7 days received news about COVID-19 from none of the listed sources in the question. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_none,TRUE,smoothed_received_news_none,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_politicians,FALSE,smoothed_wreceived_news_politicians,FALSE,COVID News From Politicians,TRUE,Estimated percentage of respondents who received news about COVID-19 from politicians in the past 7 days.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_none,TRUE,smoothed_received_news_none,FALSE,COVID News From None of Above (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_politicians,FALSE,smoothed_wreceived_news_politicians,FALSE,COVID News From Politicians,FALSE,Estimated percentage of respondents who received news about COVID-19 from politicians in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from politicians in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_politicians,TRUE,smoothed_received_news_politicians,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wreceived_news_religious,FALSE,smoothed_wreceived_news_religious,FALSE,COVID News From Religious Leaders,TRUE,Estimated percentage of respondents who received news about COVID-19 from religious leaders in the past 7 days.,"{short_description} +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_politicians,TRUE,smoothed_received_news_politicians,FALSE,COVID News From Politicians (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wreceived_news_religious,FALSE,smoothed_wreceived_news_religious,FALSE,COVID News From Religious Leaders,FALSE,Estimated percentage of respondents who received news about COVID-19 from religious leaders in the past 7 days.,"Estimated percentage of respondents who received news about COVID-19 from religious leaders in the past 7 days. -Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wreceived_news_religious,TRUE,smoothed_received_news_religious,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wrestaurant_1d,FALSE,smoothed_wrestaurant_1d,FALSE,Restaurant (Last 24 Hours),FALSE,"Estimated percentage of respondents who went to a ""bar, restaurant, or cafe"" in the past 24 hours","{short_description}. +Based on survey item I5. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wreceived_news_religious,TRUE,smoothed_received_news_religious,FALSE,COVID News From Religious Leaders (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wrestaurant_1d,FALSE,smoothed_wrestaurant_1d,FALSE,Restaurant (Last 24 Hours),FALSE,"Estimated percentage of respondents who went to a ""bar, restaurant, or cafe"" in the past 24 hours","Estimated percentage of respondents who went to a ""bar, restaurant, or cafe"" in the past 24 hours. This item was shown to respondents starting in Wave 4, September 8, 2020. -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wrestaurant_1d,TRUE,smoothed_restaurant_1d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wrestaurant_indoors_1d,FALSE,smoothed_wrestaurant_indoors_1d,FALSE,Restaurant Indoors (Last 24 Hours),TRUE,"Estimated percentage of respondents who went to an indoor ""bar, restaurant, or cafe"" in the past 24 hours","{short_description}. +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wrestaurant_1d,TRUE,smoothed_restaurant_1d,FALSE,Restaurant (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wrestaurant_indoors_1d,FALSE,smoothed_wrestaurant_indoors_1d,FALSE,Restaurant Indoors (Last 24 Hours),FALSE,"Estimated percentage of respondents who went to an indoor ""bar, restaurant, or cafe"" in the past 24 hours","Estimated percentage of respondents who went to an indoor ""bar, restaurant, or cafe"" in the past 24 hours. -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wrestaurant_indoors_1d,TRUE,smoothed_restaurant_indoors_1d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wscreening_tested_positive_14d,FALSE,smoothed_wscreening_tested_positive_14d,FALSE,Screening Tested Positive (Last 14 Days),TRUE,Estimated test positivity rate (percent) among people tested for COVID-19 in the past 14 days,"{short_description} who were being screened with no symptoms or known exposure. +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wrestaurant_indoors_1d,TRUE,smoothed_restaurant_indoors_1d,FALSE,Restaurant Indoors (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wscreening_tested_positive_14d,FALSE,smoothed_wscreening_tested_positive_14d,FALSE,Screening Tested Positive (Last 14 Days),FALSE,Estimated test positivity rate (percent) among people tested for COVID-19 in the past 14 days,"Estimated test positivity rate (percent) among people tested for COVID-19 in the past 14 days who were being screened with no symptoms or known exposure. -Note: Until Wave 11 (May 19, 2021), this included people who said they were tested while receiving other medical care, because their employer or school required it, after attending a large outdoor gathering, or prior to visiting friends or family. After that date, this includes people who said they were tested while receiving other medical care, because their employer or school required it, prior to visiting friends or family, or prior to domestic or international travel.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators -fb-survey,smoothed_wscreening_tested_positive_14d,TRUE,smoothed_screening_tested_positive_14d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wshop_1d,FALSE,smoothed_wshop_1d,FALSE,Shop (Last 24 Hours),FALSE,"Estimated percentage of respondents who went to a ""market, grocery store, or pharmacy"" in the past 24 hours","{short_description} +Note: Until Wave 11 (May 19, 2021), this included people who said they were tested while receiving other medical care, because their employer or school required it, after attending a large outdoor gathering, or prior to visiting friends or family. After that date, this includes people who said they were tested while receiving other medical care, because their employer or school required it, prior to visiting friends or family, or prior to domestic or international travel.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators +fb-survey,smoothed_wscreening_tested_positive_14d,TRUE,smoothed_screening_tested_positive_14d,FALSE,Screening Tested Positive (Last 14 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wshop_1d,FALSE,smoothed_wshop_1d,FALSE,Shop (Last 24 Hours),FALSE,"Estimated percentage of respondents who went to a ""market, grocery store, or pharmacy"" in the past 24 hours","Estimated percentage of respondents who went to a ""market, grocery store, or pharmacy"" in the past 24 hours -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wshop_1d,TRUE,smoothed_shop_1d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wshop_indoors_1d,FALSE,smoothed_wshop_indoors_1d,FALSE,Shop Indoors (Last 24 Hours),TRUE,"Estimated percentage of respondents who went to an ""indoor market, grocery store, or pharmacy"" in the past 24 hours","{short_description} +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wshop_1d,TRUE,smoothed_shop_1d,FALSE,Shop (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wshop_indoors_1d,FALSE,smoothed_wshop_indoors_1d,FALSE,Shop Indoors (Last 24 Hours),FALSE,"Estimated percentage of respondents who went to an ""indoor market, grocery store, or pharmacy"" in the past 24 hours","Estimated percentage of respondents who went to an ""indoor market, grocery store, or pharmacy"" in the past 24 hours -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wshop_indoors_1d,TRUE,smoothed_shop_indoors_1d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wspent_time_1d,FALSE,smoothed_wspent_time_1d,FALSE,Spent Time (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""spent time with someone who isn't currently staying with you"" in the past 24 hours","{short_description} +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wshop_indoors_1d,TRUE,smoothed_shop_indoors_1d,FALSE,Shop Indoors (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wspent_time_1d,FALSE,smoothed_wspent_time_1d,FALSE,Spent Time (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""spent time with someone who isn't currently staying with you"" in the past 24 hours","Estimated percentage of respondents who ""spent time with someone who isn't currently staying with you"" in the past 24 hours -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wspent_time_1d,TRUE,smoothed_spent_time_1d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wspent_time_indoors_1d,FALSE,smoothed_wspent_time_indoors_1d,FALSE,Spent Time Indoors (Last 24 Hours),TRUE,"Estimated percentage of respondents who ""spent time indoors with someone who isn't currently staying with you"" in the past 24 hours","{short_description} +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wspent_time_1d,TRUE,smoothed_spent_time_1d,FALSE,Spent Time (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wspent_time_indoors_1d,FALSE,smoothed_wspent_time_indoors_1d,FALSE,Spent Time Indoors (Last 24 Hours),FALSE,"Estimated percentage of respondents who ""spent time indoors with someone who isn't currently staying with you"" in the past 24 hours","Estimated percentage of respondents who ""spent time indoors with someone who isn't currently staying with you"" in the past 24 hours -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wspent_time_indoors_1d,TRUE,smoothed_spent_time_indoors_1d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtested_14d,FALSE,smoothed_wtested_14d,FALSE,Tested (Last 14 Days),TRUE,"Estimated percentage of people who were tested for COVID-19 in the past 14 days, regardless of their test result",,day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators -fb-survey,smoothed_wtested_14d,TRUE,smoothed_tested_14d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtested_positive_14d,FALSE,smoothed_wtested_positive_14d,FALSE,Tested Positive (Last 14 Days),TRUE,Estimated test positivity rate (percent) among people tested for COVID-19 in the past 14 days,,day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators -fb-survey,smoothed_wtested_positive_14d,TRUE,smoothed_tested_positive_14d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtravel_outside_state_5d,FALSE,smoothed_wtravel_outside_state_5d,FALSE,Travel Outside State (Last 5 Days),FALSE,Estimated percentage of respondents who report traveling outside their state in the past 5 days,"{short_description} +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wspent_time_indoors_1d,TRUE,smoothed_spent_time_indoors_1d,FALSE,Spent Time Indoors (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtested_14d,FALSE,smoothed_wtested_14d,FALSE,Tested (Last 14 Days),FALSE,"Estimated percentage of people who were tested for COVID-19 in the past 14 days, regardless of their test result",,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators +fb-survey,smoothed_wtested_14d,TRUE,smoothed_tested_14d,FALSE,Tested (Last 14 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtested_positive_14d,FALSE,smoothed_wtested_positive_14d,FALSE,Tested Positive (Last 14 Days),FALSE,Estimated test positivity rate (percent) among people tested for COVID-19 in the past 14 days,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators +fb-survey,smoothed_wtested_positive_14d,TRUE,smoothed_tested_positive_14d,FALSE,Tested Positive (Last 14 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtravel_outside_state_5d,FALSE,smoothed_wtravel_outside_state_5d,FALSE,Travel Outside State (Last 5 Days),FALSE,Estimated percentage of respondents who report traveling outside their state in the past 5 days,"Estimated percentage of respondents who report traveling outside their state in the past 5 days -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wtravel_outside_state_5d,TRUE,smoothed_travel_outside_state_5d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtravel_outside_state_7d,FALSE,smoothed_wtravel_outside_state_7d,FALSE,Travel Outside State (Last 7 Days),TRUE,Estimated percentage of respondents who report traveling outside their state in the past 7 days.,"{short_description} +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wtravel_outside_state_5d,TRUE,smoothed_travel_outside_state_5d,FALSE,Travel Outside State (Last 5 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtravel_outside_state_7d,FALSE,smoothed_wtravel_outside_state_7d,FALSE,Travel Outside State (Last 7 Days),FALSE,Estimated percentage of respondents who report traveling outside their state in the past 7 days.,"Estimated percentage of respondents who report traveling outside their state in the past 7 days. -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wtravel_outside_state_7d,TRUE,smoothed_travel_outside_state_7d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_cdc,FALSE,smoothed_wtrust_covid_info_cdc,FALSE,Trust COVID Info From CDC,TRUE,Estimated percentage of respondents who trust the Centers for Disease Control (CDC) to provide accurate news and information about COVID-19.,"{short_description} +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wtravel_outside_state_7d,TRUE,smoothed_travel_outside_state_7d,FALSE,Travel Outside State (Last 7 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_cdc,FALSE,smoothed_wtrust_covid_info_cdc,FALSE,Trust COVID Info From CDC,FALSE,Estimated percentage of respondents who trust the Centers for Disease Control (CDC) to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust the Centers for Disease Control (CDC) to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_cdc,TRUE,smoothed_trust_covid_info_cdc,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_doctors,FALSE,smoothed_wtrust_covid_info_doctors,FALSE,Trust COVID Info From Doctors,TRUE,Estimated percentage of respondents who trust doctors and other health professionals they go to for medical care to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_cdc,TRUE,smoothed_trust_covid_info_cdc,FALSE,Trust COVID Info From CDC (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_doctors,FALSE,smoothed_wtrust_covid_info_doctors,FALSE,Trust COVID Info From Doctors,FALSE,Estimated percentage of respondents who trust doctors and other health professionals they go to for medical care to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust doctors and other health professionals they go to for medical care to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_doctors,TRUE,smoothed_trust_covid_info_doctors,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_experts,FALSE,smoothed_wtrust_covid_info_experts,FALSE,Trust COVID Info From Scientists,TRUE,Estimated percentage of respondents who trust scientists and other health experts to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_doctors,TRUE,smoothed_trust_covid_info_doctors,FALSE,Trust COVID Info From Doctors (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_experts,FALSE,smoothed_wtrust_covid_info_experts,FALSE,Trust COVID Info From Scientists,FALSE,Estimated percentage of respondents who trust scientists and other health experts to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust scientists and other health experts to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_experts,TRUE,smoothed_trust_covid_info_experts,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_friends,FALSE,smoothed_wtrust_covid_info_friends,FALSE,Trust COVID Info From Friends,TRUE,Estimated percentage of respondents who trust friends and family to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_experts,TRUE,smoothed_trust_covid_info_experts,FALSE,Trust COVID Info From Scientists (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_friends,FALSE,smoothed_wtrust_covid_info_friends,FALSE,Trust COVID Info From Friends,FALSE,Estimated percentage of respondents who trust friends and family to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust friends and family to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_friends,TRUE,smoothed_trust_covid_info_friends,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_govt_health,FALSE,smoothed_wtrust_covid_info_govt_health,FALSE,Trust COVID Info From Health Officials,TRUE,Estimated percentage of respondents who trust government health officials to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_friends,TRUE,smoothed_trust_covid_info_friends,FALSE,Trust COVID Info From Friends (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_govt_health,FALSE,smoothed_wtrust_covid_info_govt_health,FALSE,Trust COVID Info From Health Officials,FALSE,Estimated percentage of respondents who trust government health officials to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust government health officials to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_govt_health,TRUE,smoothed_trust_covid_info_govt_health,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_journalists,FALSE,smoothed_wtrust_covid_info_journalists,FALSE,Trust COVID Info From Journalists,TRUE,Estimated percentage of respondents who trust journalists to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_govt_health,TRUE,smoothed_trust_covid_info_govt_health,FALSE,Trust COVID Info From Health Officials (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_journalists,FALSE,smoothed_wtrust_covid_info_journalists,FALSE,Trust COVID Info From Journalists,FALSE,Estimated percentage of respondents who trust journalists to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust journalists to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_journalists,TRUE,smoothed_trust_covid_info_journalists,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_politicians,FALSE,smoothed_wtrust_covid_info_politicians,FALSE,Trust COVID Info From Politicians,TRUE,Estimated percentage of respondents who trust politicians to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_journalists,TRUE,smoothed_trust_covid_info_journalists,FALSE,Trust COVID Info From Journalists (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_politicians,FALSE,smoothed_wtrust_covid_info_politicians,FALSE,Trust COVID Info From Politicians,FALSE,Estimated percentage of respondents who trust politicians to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust politicians to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_politicians,TRUE,smoothed_trust_covid_info_politicians,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtrust_covid_info_religious,FALSE,smoothed_wtrust_covid_info_religious,FALSE,Trust COVID Info From Religious Leaders,TRUE,Estimated percentage of respondents who trust religious leaders to provide accurate news and information about COVID-19.,"{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_politicians,TRUE,smoothed_trust_covid_info_politicians,FALSE,Trust COVID Info From Politicians (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtrust_covid_info_religious,FALSE,smoothed_wtrust_covid_info_religious,FALSE,Trust COVID Info From Religious Leaders,FALSE,Estimated percentage of respondents who trust religious leaders to provide accurate news and information about COVID-19.,"Estimated percentage of respondents who trust religious leaders to provide accurate news and information about COVID-19. -Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news -fb-survey,smoothed_wtrust_covid_info_religious,TRUE,smoothed_trust_covid_info_religious,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wtry_vaccinate_1m,FALSE,smoothed_wtry_vaccinate_1m,FALSE,Will Get COVID-19 Vaccine Within a Month,TRUE,"Estimated percentage of respondents who report that they will try to get the COVID-19 vaccine within a week to a month, among unvaccinated respondents who do not have a vaccination appointment and who are uncertain about getting vaccinated (i.e. did not say they definitely would get vaccinated, nor that they definitely would not).","{short_description} +Based on survey item I6. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#sources-of-news +fb-survey,smoothed_wtrust_covid_info_religious,TRUE,smoothed_trust_covid_info_religious,FALSE,Trust COVID Info From Religious Leaders (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wtry_vaccinate_1m,FALSE,smoothed_wtry_vaccinate_1m,FALSE,Will Get COVID-19 Vaccine Within a Month,FALSE,"Estimated percentage of respondents who report that they will try to get the COVID-19 vaccine within a week to a month, among unvaccinated respondents who do not have a vaccination appointment and who are uncertain about getting vaccinated (i.e. did not say they definitely would get vaccinated, nor that they definitely would not).","Estimated percentage of respondents who report that they will try to get the COVID-19 vaccine within a week to a month, among unvaccinated respondents who do not have a vaccination appointment and who are uncertain about getting vaccinated (i.e. did not say they definitely would get vaccinated, nor that they definitely would not). -Based on survey item V16. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wtry_vaccinate_1m,TRUE,smoothed_try_vaccinate_1m,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccinate_child_oldest,FALSE,smoothed_wvaccinate_child_oldest,FALSE,Will Vaccinate Oldest Child for COVID-19,TRUE,Estimated percentage of respondents with children who report that they will definitely or probably get the vaccine for their oldest child.,"{short_description} +Based on survey item V16. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wtry_vaccinate_1m,TRUE,smoothed_try_vaccinate_1m,FALSE,Will Get COVID-19 Vaccine Within a Month (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccinate_child_oldest,FALSE,smoothed_wvaccinate_child_oldest,FALSE,Will Vaccinate Oldest Child for COVID-19,FALSE,Estimated percentage of respondents with children who report that they will definitely or probably get the vaccine for their oldest child.,"Estimated percentage of respondents with children who report that they will definitely or probably get the vaccine for their oldest child. -Based on survey item P3. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wvaccinate_child_oldest,TRUE,smoothed_vaccinate_child_oldest,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccinate_children,FALSE,smoothed_wvaccinate_children,FALSE,Will Vaccinate Children for COVID-19,TRUE,Estimated percentage of respondents with children who report that they will definitely or probably get the vaccine for their children.,"{short_description} +Based on survey item P3. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wvaccinate_child_oldest,TRUE,smoothed_vaccinate_child_oldest,FALSE,Will Vaccinate Oldest Child for COVID-19 (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccinate_children,FALSE,smoothed_wvaccinate_children,FALSE,Will Vaccinate Children for COVID-19,FALSE,Estimated percentage of respondents with children who report that they will definitely or probably get the vaccine for their children.,"Estimated percentage of respondents with children who report that they will definitely or probably get the vaccine for their children. -Based on survey item E4. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators -fb-survey,smoothed_wvaccinate_children,TRUE,smoothed_vaccinate_children,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_appointment_location,FALSE,smoothed_wvaccine_barrier_appointment_location,FALSE,Vaccine Barrier: Appointment Locations,TRUE,"Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item E4. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#vaccination-indicators +fb-survey,smoothed_wvaccinate_children,TRUE,smoothed_vaccinate_children,FALSE,Will Vaccinate Children for COVID-19 (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_appointment_location,FALSE,smoothed_wvaccine_barrier_appointment_location,FALSE,Vaccine Barrier: Appointment Locations,FALSE,"Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_appointment_location,TRUE,smoothed_vaccine_barrier_appointment_location,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_appointment_location_has,FALSE,smoothed_wvaccine_barrier_appointment_location_has,FALSE,Vaccine Barrier (Among Vaccinated): Appointment Locations,TRUE,"Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_appointment_location,TRUE,smoothed_vaccine_barrier_appointment_location,FALSE,Vaccine Barrier: Appointment Locations (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_appointment_location_has,FALSE,smoothed_wvaccine_barrier_appointment_location_has,FALSE,Vaccine Barrier (Among Vaccinated): Appointment Locations,FALSE,"Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_appointment_location_has,TRUE,smoothed_vaccine_barrier_appointment_location_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,bad,TRUE,FALSE,,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_appointment_location_tried,FALSE,smoothed_wvaccine_barrier_appointment_location_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Appointment Locations,TRUE,"Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_appointment_location_has,TRUE,smoothed_vaccine_barrier_appointment_location_has,FALSE,Vaccine Barrier (Among Vaccinated): Appointment Locations (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,FALSE,,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_appointment_location_tried,FALSE,smoothed_wvaccine_barrier_appointment_location_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Appointment Locations,FALSE,"Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report available appointment locations as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_appointment_location_tried,TRUE,smoothed_vaccine_barrier_appointment_location_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,bad,TRUE,,,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_appointment_time,FALSE,smoothed_wvaccine_barrier_appointment_time,FALSE,Vaccine Barrier: Appointment Times,TRUE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,nation,state",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_appointment_location_tried,TRUE,smoothed_vaccine_barrier_appointment_location_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Appointment Locations (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,nation,state",day,Day,Percentage,percent,public,bad,TRUE,,,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_appointment_time,FALSE,smoothed_wvaccine_barrier_appointment_time,FALSE,Vaccine Barrier: Appointment Times,FALSE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_appointment_time,TRUE,smoothed_vaccine_barrier_appointment_time,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_appointment_time_has,FALSE,smoothed_wvaccine_barrier_appointment_time_has,FALSE,Vaccine Barrier (Among Vaccinated): Appointment Times,TRUE,"Estimated percentage of respondents who report available appointment times as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_appointment_time,TRUE,smoothed_vaccine_barrier_appointment_time,FALSE,Vaccine Barrier: Appointment Times (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_appointment_time_has,FALSE,smoothed_wvaccine_barrier_appointment_time_has,FALSE,Vaccine Barrier (Among Vaccinated): Appointment Times,FALSE,"Estimated percentage of respondents who report available appointment times as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report available appointment times as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_appointment_time_has,TRUE,smoothed_vaccine_barrier_appointment_time_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_appointment_time_tried,FALSE,smoothed_wvaccine_barrier_appointment_time_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Appointment Times,TRUE,"Estimated percentage of respondents who report available appointment times as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_appointment_time_has,TRUE,smoothed_vaccine_barrier_appointment_time_has,FALSE,Vaccine Barrier (Among Vaccinated): Appointment Times (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_appointment_time_tried,FALSE,smoothed_wvaccine_barrier_appointment_time_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Appointment Times,FALSE,"Estimated percentage of respondents who report available appointment times as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report available appointment times as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_appointment_time_tried,TRUE,smoothed_vaccine_barrier_appointment_time_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_childcare,FALSE,smoothed_wvaccine_barrier_childcare,FALSE,Vaccine Barrier: Childcare,TRUE,"Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_appointment_time_tried,TRUE,smoothed_vaccine_barrier_appointment_time_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Appointment Times (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_childcare,FALSE,smoothed_wvaccine_barrier_childcare,FALSE,Vaccine Barrier: Childcare,FALSE,"Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_childcare,TRUE,smoothed_vaccine_barrier_childcare,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_childcare_has,FALSE,smoothed_wvaccine_barrier_childcare_has,FALSE,Vaccine Barrier (Among Vaccinated): Childcare,TRUE,"Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_childcare,TRUE,smoothed_vaccine_barrier_childcare,FALSE,Vaccine Barrier: Childcare (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_childcare_has,FALSE,smoothed_wvaccine_barrier_childcare_has,FALSE,Vaccine Barrier (Among Vaccinated): Childcare,FALSE,"Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_childcare_has,TRUE,smoothed_vaccine_barrier_childcare_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_childcare_tried,FALSE,smoothed_wvaccine_barrier_childcare_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Childcare,TRUE,"Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_childcare_has,TRUE,smoothed_vaccine_barrier_childcare_has,FALSE,Vaccine Barrier (Among Vaccinated): Childcare (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_childcare_tried,FALSE,smoothed_wvaccine_barrier_childcare_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Childcare,FALSE,"Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report lack of childcare as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_childcare_tried,TRUE,smoothed_vaccine_barrier_childcare_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_document,FALSE,smoothed_wvaccine_barrier_document,FALSE,Vaccine Barrier: Documents,TRUE,"Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_childcare_tried,TRUE,smoothed_vaccine_barrier_childcare_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Childcare (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_document,FALSE,smoothed_wvaccine_barrier_document,FALSE,Vaccine Barrier: Documents,FALSE,"Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_document,TRUE,smoothed_vaccine_barrier_document,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_document_has,FALSE,smoothed_wvaccine_barrier_document_has,FALSE,Vaccine Barrier (Among Vaccinated): Documents,TRUE,"Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_document,TRUE,smoothed_vaccine_barrier_document,FALSE,Vaccine Barrier: Documents (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_document_has,FALSE,smoothed_wvaccine_barrier_document_has,FALSE,Vaccine Barrier (Among Vaccinated): Documents,FALSE,"Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_document_has,TRUE,smoothed_vaccine_barrier_document_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_document_tried,FALSE,smoothed_wvaccine_barrier_document_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Documents,TRUE,"Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_document_has,TRUE,smoothed_vaccine_barrier_document_has,FALSE,Vaccine Barrier (Among Vaccinated): Documents (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_document_tried,FALSE,smoothed_wvaccine_barrier_document_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Documents,FALSE,"Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report inability to provide required documents as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_document_tried,TRUE,smoothed_vaccine_barrier_document_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_eligible,FALSE,smoothed_wvaccine_barrier_eligible,FALSE,Vaccine Barrier: Eligibility,TRUE,"Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_document_tried,TRUE,smoothed_vaccine_barrier_document_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Documents (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_eligible,FALSE,smoothed_wvaccine_barrier_eligible,FALSE,Vaccine Barrier: Eligibility,FALSE,"Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_eligible,TRUE,smoothed_vaccine_barrier_eligible,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_eligible_has,FALSE,smoothed_wvaccine_barrier_eligible_has,FALSE,Vaccine Barrier (Among Vaccinated): Eligibility,TRUE,"Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_eligible,TRUE,smoothed_vaccine_barrier_eligible,FALSE,Vaccine Barrier: Eligibility (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_eligible_has,FALSE,smoothed_wvaccine_barrier_eligible_has,FALSE,Vaccine Barrier (Among Vaccinated): Eligibility,FALSE,"Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_eligible_has,TRUE,smoothed_vaccine_barrier_eligible_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_eligible_tried,FALSE,smoothed_wvaccine_barrier_eligible_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Eligibility,TRUE,"Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_eligible_has,TRUE,smoothed_vaccine_barrier_eligible_has,FALSE,Vaccine Barrier (Among Vaccinated): Eligibility (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_eligible_tried,FALSE,smoothed_wvaccine_barrier_eligible_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Eligibility,FALSE,"Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report eligibility requirements as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_eligible_tried,TRUE,smoothed_vaccine_barrier_eligible_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_language,FALSE,smoothed_wvaccine_barrier_language,FALSE,Vaccine Barrier: Language,TRUE,"Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_eligible_tried,TRUE,smoothed_vaccine_barrier_eligible_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Eligibility (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_language,FALSE,smoothed_wvaccine_barrier_language,FALSE,Vaccine Barrier: Language,FALSE,"Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_language,TRUE,smoothed_vaccine_barrier_language,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_language_has,FALSE,smoothed_wvaccine_barrier_language_has,FALSE,Vaccine Barrier (Among Vaccinated): Language,TRUE,"Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_language,TRUE,smoothed_vaccine_barrier_language,FALSE,Vaccine Barrier: Language (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_language_has,FALSE,smoothed_wvaccine_barrier_language_has,FALSE,Vaccine Barrier (Among Vaccinated): Language,FALSE,"Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_language_has,TRUE,smoothed_vaccine_barrier_language_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_language_tried,FALSE,smoothed_wvaccine_barrier_language_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Language,TRUE,"Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_language_has,TRUE,smoothed_vaccine_barrier_language_has,FALSE,Vaccine Barrier (Among Vaccinated): Language (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_language_tried,FALSE,smoothed_wvaccine_barrier_language_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Language,FALSE,"Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report information not being available in their native language as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_language_tried,TRUE,smoothed_vaccine_barrier_language_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_no_appointments,FALSE,smoothed_wvaccine_barrier_no_appointments,FALSE,Vaccine Barrier: No Appointments,TRUE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_language_tried,TRUE,smoothed_vaccine_barrier_language_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Language (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_no_appointments,FALSE,smoothed_wvaccine_barrier_no_appointments,FALSE,Vaccine Barrier: No Appointments,FALSE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_no_appointments,TRUE,smoothed_vaccine_barrier_no_appointments,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_no_appointments_has,FALSE,smoothed_wvaccine_barrier_no_appointments_has,FALSE,Vaccine Barrier (Among Vaccinated): No Appointments,TRUE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_no_appointments,TRUE,smoothed_vaccine_barrier_no_appointments,FALSE,Vaccine Barrier: No Appointments (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_no_appointments_has,FALSE,smoothed_wvaccine_barrier_no_appointments_has,FALSE,Vaccine Barrier (Among Vaccinated): No Appointments,FALSE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_no_appointments_has,TRUE,smoothed_vaccine_barrier_no_appointments_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_no_appointments_tried,FALSE,smoothed_wvaccine_barrier_no_appointments_tried,FALSE,Vaccine Barrier (Among Unvaccinated): No Appointments,TRUE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_no_appointments_has,TRUE,smoothed_vaccine_barrier_no_appointments_has,FALSE,Vaccine Barrier (Among Vaccinated): No Appointments (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_no_appointments_tried,FALSE,smoothed_wvaccine_barrier_no_appointments_tried,FALSE,Vaccine Barrier (Among Unvaccinated): No Appointments,FALSE,"Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report lack of vaccine or vaccine appointments as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_no_appointments_tried,TRUE,smoothed_vaccine_barrier_no_appointments_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_none,FALSE,smoothed_wvaccine_barrier_none,FALSE,Vaccine Barrier: None of Above,TRUE,"Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_no_appointments_tried,TRUE,smoothed_vaccine_barrier_no_appointments_tried,FALSE,Vaccine Barrier (Among Unvaccinated): No Appointments (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_none,FALSE,smoothed_wvaccine_barrier_none,FALSE,Vaccine Barrier: None of Above,FALSE,"Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_none,TRUE,smoothed_vaccine_barrier_none,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_none_has,FALSE,smoothed_wvaccine_barrier_none_has,FALSE,Vaccine Barrier (Among Vaccinated): None of Above,TRUE,"Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_none,TRUE,smoothed_vaccine_barrier_none,FALSE,Vaccine Barrier: None of Above (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_none_has,FALSE,smoothed_wvaccine_barrier_none_has,FALSE,Vaccine Barrier (Among Vaccinated): None of Above,FALSE,"Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_none_has,TRUE,smoothed_vaccine_barrier_none_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_none_tried,FALSE,smoothed_wvaccine_barrier_none_tried,FALSE,Vaccine Barrier (Among Unvaccinated): None of Above,TRUE,"Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_none_has,TRUE,smoothed_vaccine_barrier_none_has,FALSE,Vaccine Barrier (Among Vaccinated): None of Above (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_none_tried,FALSE,smoothed_wvaccine_barrier_none_tried,FALSE,Vaccine Barrier (Among Unvaccinated): None of Above,FALSE,"Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report experiencing none of the listed barriers to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_none_tried,TRUE,smoothed_vaccine_barrier_none_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_other,FALSE,smoothed_wvaccine_barrier_other,FALSE,Vaccine Barrier: Other,TRUE,"Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_none_tried,TRUE,smoothed_vaccine_barrier_none_tried,FALSE,Vaccine Barrier (Among Unvaccinated): None of Above (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_other,FALSE,smoothed_wvaccine_barrier_other,FALSE,Vaccine Barrier: Other,FALSE,"Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_other,TRUE,smoothed_vaccine_barrier_other,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_other_has,FALSE,smoothed_wvaccine_barrier_other_has,FALSE,Vaccine Barrier (Among Vaccinated): Other,TRUE,"Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_other,TRUE,smoothed_vaccine_barrier_other,FALSE,Vaccine Barrier: Other (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_other_has,FALSE,smoothed_wvaccine_barrier_other_has,FALSE,Vaccine Barrier (Among Vaccinated): Other,FALSE,"Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_other_has,TRUE,smoothed_vaccine_barrier_other_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_other_tried,FALSE,smoothed_wvaccine_barrier_other_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Other,TRUE,"Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_other_has,TRUE,smoothed_vaccine_barrier_other_has,FALSE,Vaccine Barrier (Among Vaccinated): Other (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_other_tried,FALSE,smoothed_wvaccine_barrier_other_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Other,FALSE,"Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report experiencing some other barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_other_tried,TRUE,smoothed_vaccine_barrier_other_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_technical_difficulties,FALSE,smoothed_wvaccine_barrier_technical_difficulties,FALSE,Vaccine Barrier: Technical Problems,TRUE,"Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 12, December 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,nation,state",day,Day,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_other_tried,TRUE,smoothed_vaccine_barrier_other_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Other (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,nation,state",day,Day,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_technical_difficulties,FALSE,smoothed_wvaccine_barrier_technical_difficulties,FALSE,Vaccine Barrier: Technical Problems,FALSE,"Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_technical_difficulties,TRUE,smoothed_vaccine_barrier_technical_difficulties,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_technical_difficulties_has,FALSE,smoothed_wvaccine_barrier_technical_difficulties_has,FALSE,Vaccine Barrier (Among Vaccinated): Technical Problems,TRUE,"Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_technical_difficulties,TRUE,smoothed_vaccine_barrier_technical_difficulties,FALSE,Vaccine Barrier: Technical Problems (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_technical_difficulties_has,FALSE,smoothed_wvaccine_barrier_technical_difficulties_has,FALSE,Vaccine Barrier (Among Vaccinated): Technical Problems,FALSE,"Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_technical_difficulties_has,TRUE,smoothed_vaccine_barrier_technical_difficulties_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_technical_difficulties_tried,FALSE,smoothed_wvaccine_barrier_technical_difficulties_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Technical Problems,TRUE,"Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_technical_difficulties_has,TRUE,smoothed_vaccine_barrier_technical_difficulties_has,FALSE,Vaccine Barrier (Among Vaccinated): Technical Problems (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_technical_difficulties_tried,FALSE,smoothed_wvaccine_barrier_technical_difficulties_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Technical Problems,FALSE,"Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report technical difficulties with the website or phone line as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_technical_difficulties_tried,TRUE,smoothed_vaccine_barrier_technical_difficulties_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_technology_access,FALSE,smoothed_wvaccine_barrier_technology_access,FALSE,Vaccine Barrier: Technology Access,TRUE,"Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_technical_difficulties_tried,TRUE,smoothed_vaccine_barrier_technical_difficulties_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Technical Problems (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_technology_access,FALSE,smoothed_wvaccine_barrier_technology_access,FALSE,Vaccine Barrier: Technology Access,FALSE,"Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_technology_access,TRUE,smoothed_vaccine_barrier_technology_access,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_technology_access_has,FALSE,smoothed_wvaccine_barrier_technology_access_has,FALSE,Vaccine Barrier (Among Vaccinated): Technology Access,TRUE,"Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_technology_access,TRUE,smoothed_vaccine_barrier_technology_access,FALSE,Vaccine Barrier: Technology Access (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_technology_access_has,FALSE,smoothed_wvaccine_barrier_technology_access_has,FALSE,Vaccine Barrier (Among Vaccinated): Technology Access,FALSE,"Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_technology_access_has,TRUE,smoothed_vaccine_barrier_technology_access_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_technology_access_tried,FALSE,smoothed_wvaccine_barrier_technology_access_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Technology Access,TRUE,"Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_technology_access_has,TRUE,smoothed_vaccine_barrier_technology_access_has,FALSE,Vaccine Barrier (Among Vaccinated): Technology Access (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_technology_access_tried,FALSE,smoothed_wvaccine_barrier_technology_access_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Technology Access,FALSE,"Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report limited access to internet or phone as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_technology_access_tried,TRUE,smoothed_vaccine_barrier_technology_access_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_time,FALSE,smoothed_wvaccine_barrier_time,FALSE,Vaccine Barrier: Time Off,TRUE,"Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_technology_access_tried,TRUE,smoothed_vaccine_barrier_technology_access_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Technology Access (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_time,FALSE,smoothed_wvaccine_barrier_time,FALSE,Vaccine Barrier: Time Off,FALSE,"Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_time,TRUE,smoothed_vaccine_barrier_time,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_time_has,FALSE,smoothed_wvaccine_barrier_time_has,FALSE,Vaccine Barrier (Among Vaccinated): Time Off,TRUE,"Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_time,TRUE,smoothed_vaccine_barrier_time,FALSE,Vaccine Barrier: Time Off (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_time_has,FALSE,smoothed_wvaccine_barrier_time_has,FALSE,Vaccine Barrier (Among Vaccinated): Time Off,FALSE,"Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_time_has,TRUE,smoothed_vaccine_barrier_time_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_time_tried,FALSE,smoothed_wvaccine_barrier_time_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Time Off,TRUE,"Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_time_has,TRUE,smoothed_vaccine_barrier_time_has,FALSE,Vaccine Barrier (Among Vaccinated): Time Off (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_time_tried,FALSE,smoothed_wvaccine_barrier_time_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Time Off,FALSE,"Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report difficulty getting time away from work or school as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_time_tried,TRUE,smoothed_vaccine_barrier_time_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_travel,FALSE,smoothed_wvaccine_barrier_travel,FALSE,Vaccine Barrier: Travel,TRUE,"Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_time_tried,TRUE,smoothed_vaccine_barrier_time_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Time Off (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_travel,FALSE,smoothed_wvaccine_barrier_travel,FALSE,Vaccine Barrier: Travel,FALSE,"Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_travel,TRUE,smoothed_vaccine_barrier_travel,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_travel_has,FALSE,smoothed_wvaccine_barrier_travel_has,FALSE,Vaccine Barrier (Among Vaccinated): Travel,TRUE,"Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_travel,TRUE,smoothed_vaccine_barrier_travel,FALSE,Vaccine Barrier: Travel (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_travel_has,FALSE,smoothed_wvaccine_barrier_travel_has,FALSE,Vaccine Barrier (Among Vaccinated): Travel,FALSE,"Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_travel_has,TRUE,smoothed_vaccine_barrier_travel_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_travel_tried,FALSE,smoothed_wvaccine_barrier_travel_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Travel,TRUE,"Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_travel_has,TRUE,smoothed_vaccine_barrier_travel_has,FALSE,Vaccine Barrier (Among Vaccinated): Travel (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_travel_tried,FALSE,smoothed_wvaccine_barrier_travel_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Travel,FALSE,"Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report difficulty traveling to vaccination sites as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_travel_tried,TRUE,smoothed_vaccine_barrier_travel_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_type,FALSE,smoothed_wvaccine_barrier_type,FALSE,Vaccine Barrier: Vaccine Type,TRUE,"Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","{short_description} +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_travel_tried,TRUE,smoothed_vaccine_barrier_travel_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Travel (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_type,FALSE,smoothed_wvaccine_barrier_type,FALSE,Vaccine Barrier: Vaccine Type,FALSE,"Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated.","Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have already been vaccinated or have tried to get vaccinated. -Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_type,TRUE,smoothed_vaccine_barrier_type,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_type_has,FALSE,smoothed_wvaccine_barrier_type_has,FALSE,Vaccine Barrier (Among Vaccinated): Vaccine Type,TRUE,"Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have already been vaccinated.","{short_description} +Based on survey items V15a and V15b. These items were shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_type,TRUE,smoothed_vaccine_barrier_type,FALSE,Vaccine Barrier: Vaccine Type (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_type_has,FALSE,smoothed_wvaccine_barrier_type_has,FALSE,Vaccine Barrier (Among Vaccinated): Vaccine Type,FALSE,"Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have already been vaccinated.","Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have already been vaccinated. -Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_type_has,TRUE,smoothed_vaccine_barrier_type_has,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_barrier_type_tried,FALSE,smoothed_wvaccine_barrier_type_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Vaccine Type,TRUE,"Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have tried to get vaccinated.","{short_description} +Based on survey item V15a. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_type_has,TRUE,smoothed_vaccine_barrier_type_has,FALSE,Vaccine Barrier (Among Vaccinated): Vaccine Type (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_barrier_type_tried,FALSE,smoothed_wvaccine_barrier_type_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Vaccine Type,FALSE,"Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have tried to get vaccinated.","Estimated percentage of respondents who report available vaccine type as a barrier to getting the vaccine, among those who have tried to get vaccinated. -Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination -fb-survey,smoothed_wvaccine_barrier_type_tried,TRUE,smoothed_vaccine_barrier_type_tried,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_likely_doctors,FALSE,smoothed_wvaccine_likely_doctors,FALSE,Vaccine Likely: Doctors,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by doctors and other health professionals they go to for medical care,"{short_description}, among respondents who have not yet been vaccinated. +Based on survey item V15b. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#barriers-to-accessing-vaccination +fb-survey,smoothed_wvaccine_barrier_type_tried,TRUE,smoothed_vaccine_barrier_type_tried,FALSE,Vaccine Barrier (Among Unvaccinated): Vaccine Type (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_likely_doctors,FALSE,smoothed_wvaccine_likely_doctors,FALSE,Vaccine Likely: Doctors,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by doctors and other health professionals they go to for medical care,"Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by doctors and other health professionals they go to for medical care, among respondents who have not yet been vaccinated. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image -fb-survey,smoothed_wvaccine_likely_doctors,TRUE,smoothed_vaccine_likely_doctors,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_likely_friends,FALSE,smoothed_wvaccine_likely_friends,FALSE,Vaccine Likely: Friends,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by friends and family,"{short_description}, among respondents who have not yet been vaccinated. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image +fb-survey,smoothed_wvaccine_likely_doctors,TRUE,smoothed_vaccine_likely_doctors,FALSE,Vaccine Likely: Doctors (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_likely_friends,FALSE,smoothed_wvaccine_likely_friends,FALSE,Vaccine Likely: Friends,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by friends and family,"Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by friends and family, among respondents who have not yet been vaccinated. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image -fb-survey,smoothed_wvaccine_likely_friends,TRUE,smoothed_vaccine_likely_friends,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_likely_govt_health,FALSE,smoothed_wvaccine_likely_govt_health,FALSE,Vaccine Likely: Government Health,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by government health officials,"{short_description}, among respondents who have not yet been vaccinated. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image +fb-survey,smoothed_wvaccine_likely_friends,TRUE,smoothed_vaccine_likely_friends,FALSE,Vaccine Likely: Friends (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_likely_govt_health,FALSE,smoothed_wvaccine_likely_govt_health,FALSE,Vaccine Likely: Government Health,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by government health officials,"Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by government health officials, among respondents who have not yet been vaccinated. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image -fb-survey,smoothed_wvaccine_likely_govt_health,TRUE,smoothed_vaccine_likely_govt_health,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_likely_local_health,FALSE,smoothed_wvaccine_likely_local_health,FALSE,Vaccine Likely: Local Health,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by local health workers,"{short_description}, among respondents who have not yet been vaccinated. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image +fb-survey,smoothed_wvaccine_likely_govt_health,TRUE,smoothed_vaccine_likely_govt_health,FALSE,Vaccine Likely: Government Health (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_likely_local_health,FALSE,smoothed_wvaccine_likely_local_health,FALSE,Vaccine Likely: Local Health,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by local health workers,"Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by local health workers, among respondents who have not yet been vaccinated. -Discontinued as of Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image -fb-survey,smoothed_wvaccine_likely_local_health,TRUE,smoothed_vaccine_likely_local_health,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_likely_politicians,FALSE,smoothed_wvaccine_likely_politicians,FALSE,Vaccine Likely: Politicians,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by politicians,"{short_description}, among respondents who have not yet been vaccinated. +Discontinued as of Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image +fb-survey,smoothed_wvaccine_likely_local_health,TRUE,smoothed_vaccine_likely_local_health,FALSE,Vaccine Likely: Local Health (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_likely_politicians,FALSE,smoothed_wvaccine_likely_politicians,FALSE,Vaccine Likely: Politicians,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by politicians,"Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by politicians, among respondents who have not yet been vaccinated. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image -fb-survey,smoothed_wvaccine_likely_politicians,TRUE,smoothed_vaccine_likely_politicians,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wvaccine_likely_who,FALSE,smoothed_wvaccine_likely_who,FALSE,Vaccine Likely: WHO,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by the World Health Organization,"{short_description}, among respondents who have not yet been vaccinated. +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image +fb-survey,smoothed_wvaccine_likely_politicians,TRUE,smoothed_vaccine_likely_politicians,FALSE,Vaccine Likely: Politicians (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wvaccine_likely_who,FALSE,smoothed_wvaccine_likely_who,FALSE,Vaccine Likely: WHO,FALSE,Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by the World Health Organization,"Estimated percentage of respondents who would be more likely to get a COVID-19 vaccine if it were recommended to them by the World Health Organization, among respondents who have not yet been vaccinated. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image -fb-survey,smoothed_wvaccine_likely_who,TRUE,smoothed_vaccine_likely_who,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_children_education,FALSE,smoothed_wwant_info_children_education,FALSE,Want Information: Education,TRUE,Estimated percentage of people who want more information about how to support their children’s education.,"{short_description} +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#outreach-and-image +fb-survey,smoothed_wvaccine_likely_who,TRUE,smoothed_vaccine_likely_who,FALSE,Vaccine Likely: WHO (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_children_education,FALSE,smoothed_wwant_info_children_education,FALSE,Want Information: Education,FALSE,Estimated percentage of people who want more information about how to support their children’s education.,"Estimated percentage of people who want more information about how to support their children’s education. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_children_education,TRUE,smoothed_want_info_children_education,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_covid_treatment,FALSE,smoothed_wwant_info_covid_treatment,FALSE,Want Information: COVID Treatment,TRUE,Estimated percentage of people who want more information about the treatment of COVID-19.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_children_education,TRUE,smoothed_want_info_children_education,FALSE,Want Information: Education (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_covid_treatment,FALSE,smoothed_wwant_info_covid_treatment,FALSE,Want Information: COVID Treatment,FALSE,Estimated percentage of people who want more information about the treatment of COVID-19.,"Estimated percentage of people who want more information about the treatment of COVID-19. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_covid_treatment,TRUE,smoothed_want_info_covid_treatment,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_covid_variants,FALSE,smoothed_wwant_info_covid_variants,FALSE,Want Information: COVID Variants,TRUE,Estimated percentage of people who want more information about COVID-19 variants and mutations.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_covid_treatment,TRUE,smoothed_want_info_covid_treatment,FALSE,Want Information: COVID Treatment (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_covid_variants,FALSE,smoothed_wwant_info_covid_variants,FALSE,Want Information: COVID Variants,FALSE,Estimated percentage of people who want more information about COVID-19 variants and mutations.,"Estimated percentage of people who want more information about COVID-19 variants and mutations. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_covid_variants,TRUE,smoothed_want_info_covid_variants,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_employment,FALSE,smoothed_wwant_info_employment,FALSE,Want Information: Employment,TRUE,Estimated percentage of people who want more information about employment and other economic and financial issues.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_covid_variants,TRUE,smoothed_want_info_covid_variants,FALSE,Want Information: COVID Variants (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_employment,FALSE,smoothed_wwant_info_employment,FALSE,Want Information: Employment,FALSE,Estimated percentage of people who want more information about employment and other economic and financial issues.,"Estimated percentage of people who want more information about employment and other economic and financial issues. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_employment,TRUE,smoothed_want_info_employment,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_mental_health,FALSE,smoothed_wwant_info_mental_health,FALSE,Want Information: Mental Health,TRUE,Estimated percentage of people who want more information about how to maintain their mental health.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_employment,TRUE,smoothed_want_info_employment,FALSE,Want Information: Employment (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_mental_health,FALSE,smoothed_wwant_info_mental_health,FALSE,Want Information: Mental Health,FALSE,Estimated percentage of people who want more information about how to maintain their mental health.,"Estimated percentage of people who want more information about how to maintain their mental health. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_mental_health,TRUE,smoothed_want_info_mental_health,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_none,FALSE,smoothed_wwant_info_none,FALSE,Want Information: None of Above,TRUE,Estimated percentage of people who want more information about none of the listed topics.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_mental_health,TRUE,smoothed_want_info_mental_health,FALSE,Want Information: Mental Health (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_none,FALSE,smoothed_wwant_info_none,FALSE,Want Information: None of Above,FALSE,Estimated percentage of people who want more information about none of the listed topics.,"Estimated percentage of people who want more information about none of the listed topics. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_none,TRUE,smoothed_want_info_none,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_relationships,FALSE,smoothed_wwant_info_relationships,FALSE,Want Information: Relationships,TRUE,Estimated percentage of people who want more information about how to maintain their social relationships despite physical distancing.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_none,TRUE,smoothed_want_info_none,FALSE,Want Information: None of Above (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_relationships,FALSE,smoothed_wwant_info_relationships,FALSE,Want Information: Relationships,FALSE,Estimated percentage of people who want more information about how to maintain their social relationships despite physical distancing.,"Estimated percentage of people who want more information about how to maintain their social relationships despite physical distancing. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_relationships,TRUE,smoothed_want_info_relationships,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_vaccine_access,FALSE,smoothed_wwant_info_vaccine_access,FALSE,Want Information: Vaccine Access,TRUE,Estimated percentage of people who want more information about how to get a COVID-19 vaccine.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_relationships,TRUE,smoothed_want_info_relationships,FALSE,Want Information: Relationships (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_vaccine_access,FALSE,smoothed_wwant_info_vaccine_access,FALSE,Want Information: Vaccine Access,FALSE,Estimated percentage of people who want more information about how to get a COVID-19 vaccine.,"Estimated percentage of people who want more information about how to get a COVID-19 vaccine. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_vaccine_access,TRUE,smoothed_want_info_vaccine_access,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwant_info_vaccine_types,FALSE,smoothed_wwant_info_vaccine_types,FALSE,Want Information: Vaccine Types,TRUE,Estimated percentage of people who want more information about different types of COVID-19 vaccines.,"{short_description} +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_vaccine_access,TRUE,smoothed_want_info_vaccine_access,FALSE,Want Information: Vaccine Access (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwant_info_vaccine_types,FALSE,smoothed_wwant_info_vaccine_types,FALSE,Want Information: Vaccine Types,FALSE,Estimated percentage of people who want more information about different types of COVID-19 vaccines.,"Estimated percentage of people who want more information about different types of COVID-19 vaccines. -Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wwant_info_vaccine_types,TRUE,smoothed_want_info_vaccine_types,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwanted_test_14d,FALSE,smoothed_wwanted_test_14d,FALSE,Wanted Test (Last 14 Days),FALSE,"Estimated percentage of people who wanted to be tested for COVID-19 in the past 14 days, out of people who were not tested in that time","{short_description}. +Based on survey item I7. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wwant_info_vaccine_types,TRUE,smoothed_want_info_vaccine_types,FALSE,Want Information: Vaccine Types (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwanted_test_14d,FALSE,smoothed_wwanted_test_14d,FALSE,Wanted Test (Last 14 Days),FALSE,"Estimated percentage of people who wanted to be tested for COVID-19 in the past 14 days, out of people who were not tested in that time","Estimated percentage of people who wanted to be tested for COVID-19 in the past 14 days, out of people who were not tested in that time. -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators -fb-survey,smoothed_wwanted_test_14d,TRUE,smoothed_wanted_test_14d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwearing_mask,FALSE,smoothed_wwearing_mask,FALSE,People Wearing Masks (Last 5 Days),FALSE,Estimated percentage of people who wore a mask for most or all of the time while in public in the past 5 days; those not in public in the past 5 days are not counted.,"{short_description} +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#testing-indicators +fb-survey,smoothed_wwanted_test_14d,TRUE,smoothed_wanted_test_14d,FALSE,Wanted Test (Last 14 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwearing_mask,FALSE,smoothed_wwearing_mask,FALSE,People Wearing Masks (Last 5 Days),FALSE,Estimated percentage of people who wore a mask for most or all of the time while in public in the past 5 days; those not in public in the past 5 days are not counted.,"Estimated percentage of people who wore a mask for most or all of the time while in public in the past 5 days; those not in public in the past 5 days are not counted. -Discontinued as of Wave 8, February 8, 2021.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,"[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use) +Discontinued as of Wave 8, February 8, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,"[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use) [Interpreting mask use in context](https://delphi.cmu.edu/blog/2020/12/13/are-masks-widely-used-in-public/) [Wave 10 revision updates](https://cmu-delphi.github.io/delphi-epidata/symptom-survey/coding.html#wave-10)" -fb-survey,smoothed_wwearing_mask,TRUE,smoothed_wearing_mask,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwearing_mask_7d,FALSE,smoothed_wwearing_mask_7d,FALSE,People Wearing Masks (Last 7 Days),TRUE,Estimated percentage of people who wore a mask for most or all of the time while in public in the past 7 days; those not in public in the past 7 days are not counted.,"{source_description} We also ask them if they wear a mask when they are in public. For this signal, we estimate the percentage of people who say they wear a mask most or all of the time when they are in public. +fb-survey,smoothed_wwearing_mask,TRUE,smoothed_wearing_mask,FALSE,People Wearing Masks (Last 5 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwearing_mask_7d,FALSE,smoothed_wwearing_mask_7d,FALSE,People Wearing Masks (Last 7 Days),FALSE,Estimated percentage of people who wore a mask for most or all of the time while in public in the past 7 days; those not in public in the past 7 days are not counted.,"{source_description} We also ask them if they wear a mask when they are in public. For this signal, we estimate the percentage of people who say they wear a mask most or all of the time when they are in public. -This item was shown to respondents starting in Wave 8, February 8, 2021, replacing a 5-day version of the same question.",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,"[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use) +This item was shown to respondents starting in Wave 8, February 8, 2021, replacing a 5-day version of the same question.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,TRUE,FALSE,TRUE,TRUE,"[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mask-use) [Interpreting mask use in context](https://delphi.cmu.edu/blog/2020/12/13/are-masks-widely-used-in-public/) [Wave 10 revision updates](https://cmu-delphi.github.io/delphi-epidata/symptom-survey/coding.html#wave-10)" -fb-survey,smoothed_wwearing_mask_7d,TRUE,smoothed_wearing_mask_7d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwork_outside_home_1d,FALSE,smoothed_wwork_outside_home_1d,FALSE,Work Outside Home (Last 24 Hours),FALSE,Estimated percentage of respondents who worked or went to school outside their home in the past 24 hours,"{short_description}. +fb-survey,smoothed_wwearing_mask_7d,TRUE,smoothed_wearing_mask_7d,FALSE,People Wearing Masks (Last 7 Days) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,good,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwork_outside_home_1d,FALSE,smoothed_wwork_outside_home_1d,FALSE,Work Outside Home (Last 24 Hours),FALSE,Estimated percentage of respondents who worked or went to school outside their home in the past 24 hours,"Estimated percentage of respondents who worked or went to school outside their home in the past 24 hours. This item was shown to respondents starting in Wave 4, September 8, 2020. -Discontinued as of Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wwork_outside_home_1d,TRUE,smoothed_work_outside_home_1d,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wwork_outside_home_indoors_1d,FALSE,smoothed_wwork_outside_home_indoors_1d,FALSE,Work Outside Home Indoors (Last 24 Hours),TRUE,Estimated percentage of respondents who worked or went to school outside their home in an indoor setting in the past 24 hours,"{short_description}. - -This item was shown to respondents starting in Wave 10, March 2, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel -fb-survey,smoothed_wwork_outside_home_indoors_1d,TRUE,smoothed_work_outside_home_indoors_1d,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wworried_become_ill,FALSE,smoothed_wworried_become_ill,FALSE,Worried Become Ill,FALSE,"Estimated percentage of respondents who reported feeling very or somewhat worried that ""you or someone in your immediate family might become seriously ill from COVID-19""","{short_description}. - -Discontinued as of Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wworried_become_ill,TRUE,smoothed_worried_become_ill,FALSE,{base_name} (Unweighted),FALSE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wworried_catch_covid,FALSE,smoothed_wworried_catch_covid,FALSE,Worried About Catching COVID,TRUE,Estimated percentage of respondents worrying either a great deal or a moderate amount about catching COVID-19.,"{short_description} - -Based on survey item G1. This item was shown to respondents starting in Wave 11, May 19, 2021.",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information -fb-survey,smoothed_wworried_catch_covid,TRUE,smoothed_worried_catch_covid,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wworried_finances,FALSE,smoothed_wworried_finances,FALSE,Worried Finances,TRUE,"Estimated percentage of respondents who report being very or somewhat worried about their ""household's finances for the next month""",,day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators -fb-survey,smoothed_wworried_finances,TRUE,smoothed_worried_finances,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -fb-survey,smoothed_wworried_vaccine_side_effects,FALSE,smoothed_wworried_vaccine_side_effects,FALSE,Worried Vaccine Side Effects,TRUE,"Estimated percentage of respondents who are very or moderately concerned that they would ""experience a side effect from a COVID-19 vaccination.""","{short_description} - -Note: Until Wave 10, March 2, 2021, all respondents answered this question, including those who had already received one or more doses of a COVID-19 vaccine; beginning on that date, only respondents who said they have not received a COVID vaccine are asked this question.",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy -fb-survey,smoothed_wworried_vaccine_side_effects,TRUE,smoothed_worried_vaccine_side_effects,FALSE,{base_name} (Unweighted),TRUE,,,day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -ght,raw_search,,raw_search,FALSE,COVID-Related Searches,FALSE,"Google search volume for COVID-related searches, in arbitrary units that are normalized for population","{short_description} - -Discontinued March 8, 2021.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/ght.html -ght,raw_search,,smoothed_search,FALSE,{base_name} (Gaussian smoothed),FALSE,,"{base_short_description), smoothed in time using a Gaussian linear smoother. - -Discontinued March 8, 2021.",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-survey,raw_cli,FALSE,raw_cli,FALSE,COVID-Like Illness,FALSE,Estimated percentage of people who know someone in their community with COVID-like illness.,"{short_description} - -Discontinued May 16, 2020.",day,Date,Value,raw,early,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-survey.html -google-survey,raw_cli,TRUE,smoothed_cli,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,ageusia_raw_search,FALSE,ageusia_raw_search,FALSE,Ageusia Searches,FALSE,"Google search volume for ageusia-related searches, in arbitrary units that are normalized for overall search users",,day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,ageusia_raw_search,TRUE,ageusia_smoothed_search,TRUE,{base_name} (7-day average),FALSE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,anosmia_raw_search,FALSE,anosmia_raw_search,FALSE,Anosmia Searches,FALSE,"Google search volume for anosmia-related searches, in arbitrary units that are normalized for overall search users ",,day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,anosmia_raw_search,TRUE,anosmia_smoothed_search,TRUE,{base_name} (7-day average),FALSE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,s01_raw_search,FALSE,s01_raw_search,FALSE,"Searches for: Cough, Phlegm, Sputum, Upper respiratory tract infection",TRUE,"The average relative frequency of searches for Cough, Phlegm, Sputum, and Upper respiratory tract infection, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,s01_raw_search,TRUE,s01_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,s02_raw_search,FALSE,s02_raw_search,FALSE,"Searches for: Nasal congestion, Post nasal drip, Rhinorrhea, Sinusitis, Rhinitis, Common cold",TRUE,"The average relative frequency of searches for Nasal congestion, Post nasal drip, Rhinorrhea, Sinusitis, Rhinitis, and Common cold, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,s02_raw_search,TRUE,s02_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,s03_raw_search,FALSE,s03_raw_search,FALSE,"Searches for: Fever, Hyperthermia, Chills, Shivering, Low grade fever",TRUE,"The average relative frequency of searches for Fever, Hyperthermia, Chills, Shivering, and Low grade fever, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,s03_raw_search,TRUE,s03_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,s04_raw_search,FALSE,s04_raw_search,FALSE,"Searches for: Shortness of breath, Wheeze, Croup, Pneumonia, Asthma, Crackles, Acute bronchitis, Bronchitis",TRUE,"The average relative frequency of searches for Shortness of breath, Wheeze, Croup, Pneumonia, Asthma, Crackles, Acute bronchitis, and Bronchitis, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,s04_raw_search,TRUE,s04_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,s05_raw_search,FALSE,s05_raw_search,FALSE,"Searches for: Anosmia, Dysgeusia, Ageusia",TRUE,"The average relative frequency of searches for Anosmia, Dysgeusia, and Ageusia, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,s05_raw_search,TRUE,s05_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,s06_raw_search,FALSE,s06_raw_search,FALSE,"Searches for: Laryngitis, Sore throat, Throat irritation",TRUE,"The average relative frequency of searches for Laryngitis, Sore throat, and Throat irritation, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,s06_raw_search,TRUE,s06_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,scontrol_raw_search,FALSE,scontrol_raw_search,FALSE,"Searches for: Type 2 diabetes, Urinary tract infection, Hair loss, Candidiasis, Weight gain",TRUE,"The average relative frequency of searches for Type 2 diabetes, Urinary tract infection, Hair loss, Candidiasis, and Weight gain, in arbitrary units that are normalized against overall search patterns within each region.","{short_desc} - -The symptoms in this set are not COVID-19 related. This signal is intended to be used as a negative control.",day,Date,Value,raw,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,scontrol_raw_search,TRUE,scontrol_smoothed_search,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,raw,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, -google-symptoms,sum_anosmia_ageusia_raw_search,FALSE,sum_anosmia_ageusia_raw_search,FALSE,Sum Anosmia Ageusia Searches,FALSE,"The sum of Google search volume for anosmia and ageusia related searches, in arbitrary units that are normalized for overall search users",,day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html -google-symptoms,sum_anosmia_ageusia_raw_search,TRUE,sum_anosmia_ageusia_smoothed_search,TRUE,{base_name} (7-day average),FALSE,,,day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hhs,confirmed_admissions_covid_1d,FALSE,confirmed_admissions_covid_1d,FALSE,Confirmed COVID-19 Admissions per day,TRUE,Sum of adult and pediatric confirmed COVID-19 hospital admissions occurring each day. ,The U.S. Department of Health & Human Services (HHS) receives reports from hospital systems on their capacity and admissions. This signal reports the number of adult and pediatric hospital admissions with confirmed COVID-19 occurring each day,day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html -hhs,confirmed_admissions_covid_1d,TRUE,confirmed_admissions_covid_1d_prop,FALSE,{base_name} (per 100k people),TRUE,,,day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -hhs,confirmed_admissions_covid_1d,,confirmed_admissions_covid_1d_7dav,TRUE,{base_name} (7-day average),TRUE,,,day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hhs,confirmed_admissions_covid_1d,,confirmed_admissions_covid_1d_prop_7dav,FALSE,"{base_name} (7-day average, per 100k people)",TRUE,,,day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d,FALSE,Confirmed Influenza Admissions per day,TRUE,All confirmed influenza hospital admissions occurring each day. ,The U.S. Department of Health & Human Services (HHS) receives reports from hospital systems on their capacity and admissions. This signal reports the number of adult and pediatric hospital admissions with confirmed influenza occurring each day,day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html -hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d_7dav,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d_prop,FALSE,{base_name} (per 100k people),TRUE,,,day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d_prop_7dav,FALSE,"{base_name} (7-day average, per 100k people)",TRUE,,,day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hhs,sum_confirmed_suspected_admissions_covid_1d,FALSE,sum_confirmed_suspected_admissions_covid_1d,FALSE,Confirmed and Suspected COVID-19 Admissions per day,TRUE,Sum of adult and pediatric confirmed and suspected COVID-19 hospital admissions occurring each day. ,The U.S. Department of Health & Human Services (HHS) receives reports from hospital systems on their capacity and admissions. This signal reports the number of adult and pediatric hospital admissions with suspected COVID-19 occurring each day,day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html -hhs,sum_confirmed_suspected_admissions_covid_1d,TRUE,sum_confirmed_suspected_admissions_covid_1d_prop,FALSE,{base_name} (per 100k people),TRUE,,,day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -hhs,sum_confirmed_suspected_admissions_covid_1d,,sum_confirmed_suspected_admissions_covid_1d_7dav,TRUE,{base_name} (7-day average),TRUE,,,day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hhs,sum_confirmed_suspected_admissions_covid_1d,,sum_confirmed_suspected_admissions_covid_1d_prop_7dav,FALSE,"{base_name} (7-day average, per 100k people)",TRUE,,,day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hospital-admissions,smoothed_covid19,FALSE,smoothed_covid19,FALSE,COVID-19 Admissions (EMR and Claims),FALSE,Estimated percentage of new hospital admissions with COVID-associated diagnoses,"{short_description}, based on counts of electronic medical records and claims from health system partners, smoothed in time using a Gaussian linear smoother. - -Discontinued October 1, 2020.",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hospital-admissions.html -hospital-admissions,smoothed_covid19,TRUE,smoothed_adj_covid19,FALSE,{base_name} (Day-adjusted),FALSE,,"{base_short_description}, based on counts of electronic medical records and claims from health system partners, smoothed in time using a Gaussian linear smoother, and adjusted to reduce day-of-week effects. - -Discontinued October 1, 2020.",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -hospital-admissions,smoothed_covid19_from_claims,FALSE,smoothed_covid19_from_claims,FALSE,COVID-19 Admissions (Claims),TRUE,Estimated percentage of new hospital admissions with COVID-associated diagnoses,"{short_description}, based on counts of claims from health system partners, smoothed in time using a Gaussian linear smoother.",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hospital-admissions.html -hospital-admissions,smoothed_covid19_from_claims,TRUE,smoothed_adj_covid19_from_claims,FALSE,{base_name} (Day-adjusted),TRUE,,"{base_short_description}, based on counts of claims from health system partners, smoothed in time using a Gaussian linear smoother, and adjusted to reduce day-of-week effects.",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,confirmed_cumulative_num,FALSE,confirmed_cumulative_num,FALSE,Confirmed COVID Cases (Cumulative),FALSE,Cumulative confirmed COVID cases,Confirmed COVID-19 cases as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/) and [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#compositional-signals-confirmed-cases-and-deaths -indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_num,TRUE,"Confirmed COVID Cases (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID cases, 7-day average ",,day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID cases, 7-day average, per 100k people",,day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_cumulative_prop,FALSE,"Confirmed COVID Cases (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID cases, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_incidence_num,TRUE,Confirmed COVID Cases (Daily new),FALSE,Daily new confirmed COVID cases,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID cases, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,deaths_cumulative_num,FALSE,deaths_cumulative_num,FALSE,Confirmed COVID Deaths (Cumulative),FALSE,Cumulative confirmed COVID deaths,Confirmed COVID-19 deaths as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/) and [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#compositional-signals-confirmed-cases-and-deaths -indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_7dav_incidence_num,TRUE,"Confirmed COVID Deaths (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID deaths, 7-day average ",,day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_7dav_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID deaths, 7-day average, per 100k people",,day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_cumulative_prop,FALSE,"Confirmed COVID Deaths (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID deaths, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_incidence_num,TRUE,Confirmed COVID Deaths (Daily new),FALSE,Daily new confirmed COVID deaths,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID deaths, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +Discontinued as of Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wwork_outside_home_1d,TRUE,smoothed_work_outside_home_1d,FALSE,Work Outside Home (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wwork_outside_home_indoors_1d,FALSE,smoothed_wwork_outside_home_indoors_1d,FALSE,Work Outside Home Indoors (Last 24 Hours),FALSE,Estimated percentage of respondents who worked or went to school outside their home in an indoor setting in the past 24 hours,"Estimated percentage of respondents who worked or went to school outside their home in an indoor setting in the past 24 hours. + +This item was shown to respondents starting in Wave 10, March 2, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#social-distancing-and-travel +fb-survey,smoothed_wwork_outside_home_indoors_1d,TRUE,smoothed_work_outside_home_indoors_1d,FALSE,Work Outside Home Indoors (Last 24 Hours) (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wworried_become_ill,FALSE,smoothed_wworried_become_ill,FALSE,Worried Become Ill,FALSE,"Estimated percentage of respondents who reported feeling very or somewhat worried that ""you or someone in your immediate family might become seriously ill from COVID-19""","Estimated percentage of respondents who reported feeling very or somewhat worried that ""you or someone in your immediate family might become seriously ill from COVID-19"". + +Discontinued as of Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wworried_become_ill,TRUE,smoothed_worried_become_ill,FALSE,Worried Become Ill (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wworried_catch_covid,FALSE,smoothed_wworried_catch_covid,FALSE,Worried About Catching COVID,FALSE,Estimated percentage of respondents worrying either a great deal or a moderate amount about catching COVID-19.,"Estimated percentage of respondents worrying either a great deal or a moderate amount about catching COVID-19. + +Based on survey item G1. This item was shown to respondents starting in Wave 11, May 19, 2021.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#desired-information +fb-survey,smoothed_wworried_catch_covid,TRUE,smoothed_worried_catch_covid,FALSE,Worried About Catching COVID (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,neutral,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wworried_finances,FALSE,smoothed_wworried_finances,FALSE,Worried Finances,FALSE,"Estimated percentage of respondents who report being very or somewhat worried about their ""household's finances for the next month""",,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#mental-health-indicators +fb-survey,smoothed_wworried_finances,TRUE,smoothed_worried_finances,FALSE,Worried Finances (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +fb-survey,smoothed_wworried_vaccine_side_effects,FALSE,smoothed_wworried_vaccine_side_effects,FALSE,Worried Vaccine Side Effects,FALSE,"Estimated percentage of respondents who are very or moderately concerned that they would ""experience a side effect from a COVID-19 vaccination.""","Estimated percentage of respondents who are very or moderately concerned that they would ""experience a side effect from a COVID-19 vaccination."" + +Note: Until Wave 10, March 2, 2021, all respondents answered this question, including those who had already received one or more doses of a COVID-19 vaccine; beginning on that date, only respondents who said they have not received a COVID vaccine are asked this question.",Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,TRUE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/fb-survey.html#reasons-for-hesitancy +fb-survey,smoothed_wworried_vaccine_side_effects,TRUE,smoothed_worried_vaccine_side_effects,FALSE,Worried Vaccine Side Effects (Unweighted),FALSE,,,Delphi US COVID-19 Trends and Impact Survey,covid,Self-reported (survey),"county,hrr,msa,nation,state",day,Date,Percentage,percent,public,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +ght,raw_search,,raw_search,FALSE,COVID-Related Searches,FALSE,"Google search volume for COVID-related searches, in arbitrary units that are normalized for population","Google search volume for COVID-related searches, in arbitrary units that are normalized for population + +Discontinued March 8, 2021.",Google Health Trends,covid,Search volume,"dma,hrr,msa,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/ght.html +ght,raw_search,,smoothed_search,FALSE,COVID-Related Searches (Gaussian smoothed),FALSE,,"{base_short_description), smoothed in time using a Gaussian linear smoother. + +Discontinued March 8, 2021.",Google Health Trends,covid,Search volume,"dma,hrr,msa,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-survey,raw_cli,FALSE,raw_cli,FALSE,COVID-Like Illness,FALSE,Estimated percentage of people who know someone in their community with COVID-like illness.,"Estimated percentage of people who know someone in their community with COVID-like illness. + +Discontinued May 16, 2020.",Google Symptom Surveys,covid,Self-reported (survey),"county,hrr,msa,state",day,Date,Value,raw,early,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-survey.html +google-survey,raw_cli,TRUE,smoothed_cli,FALSE,COVID-Like Illness (7-day average),FALSE,,,Google Symptom Surveys,covid,Self-reported (survey),"county,hrr,msa,state",day,Date,Value,raw,early,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,ageusia_raw_search,FALSE,ageusia_raw_search,FALSE,Ageusia Searches,FALSE,"Google search volume for ageusia-related searches, in arbitrary units that are normalized for overall search users",,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,ageusia_raw_search,TRUE,ageusia_smoothed_search,TRUE,Ageusia Searches (7-day average),FALSE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,anosmia_raw_search,FALSE,anosmia_raw_search,FALSE,Anosmia Searches,FALSE,"Google search volume for anosmia-related searches, in arbitrary units that are normalized for overall search users ",,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,anosmia_raw_search,TRUE,anosmia_smoothed_search,TRUE,Anosmia Searches (7-day average),FALSE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,s01_raw_search,FALSE,s01_raw_search,FALSE,"Searches for: Cough, Phlegm, Sputum, Upper respiratory tract infection",TRUE,"The average relative frequency of searches for Cough, Phlegm, Sputum, and Upper respiratory tract infection, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Cough, Phlegm, Sputum, and Upper respiratory tract infection, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,s01_raw_search,TRUE,s01_smoothed_search,FALSE,"Searches for: Cough, Phlegm, Sputum, Upper respiratory tract infection (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,s02_raw_search,FALSE,s02_raw_search,FALSE,"Searches for: Nasal congestion, Post nasal drip, Rhinorrhea, Sinusitis, Rhinitis, Common cold",TRUE,"The average relative frequency of searches for Nasal congestion, Post nasal drip, Rhinorrhea, Sinusitis, Rhinitis, and Common cold, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Nasal congestion, Post nasal drip, Rhinorrhea, Sinusitis, Rhinitis, and Common cold, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,s02_raw_search,TRUE,s02_smoothed_search,FALSE,"Searches for: Nasal congestion, Post nasal drip, Rhinorrhea, Sinusitis, Rhinitis, Common cold (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,s03_raw_search,FALSE,s03_raw_search,FALSE,"Searches for: Fever, Hyperthermia, Chills, Shivering, Low grade fever",TRUE,"The average relative frequency of searches for Fever, Hyperthermia, Chills, Shivering, and Low grade fever, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Fever, Hyperthermia, Chills, Shivering, and Low grade fever, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,s03_raw_search,TRUE,s03_smoothed_search,FALSE,"Searches for: Fever, Hyperthermia, Chills, Shivering, Low grade fever (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,s04_raw_search,FALSE,s04_raw_search,FALSE,"Searches for: Shortness of breath, Wheeze, Croup, Pneumonia, Asthma, Crackles, Acute bronchitis, Bronchitis",TRUE,"The average relative frequency of searches for Shortness of breath, Wheeze, Croup, Pneumonia, Asthma, Crackles, Acute bronchitis, and Bronchitis, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Shortness of breath, Wheeze, Croup, Pneumonia, Asthma, Crackles, Acute bronchitis, and Bronchitis, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,s04_raw_search,TRUE,s04_smoothed_search,FALSE,"Searches for: Shortness of breath, Wheeze, Croup, Pneumonia, Asthma, Crackles, Acute bronchitis, Bronchitis (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,s05_raw_search,FALSE,s05_raw_search,FALSE,"Searches for: Anosmia, Dysgeusia, Ageusia",TRUE,"The average relative frequency of searches for Anosmia, Dysgeusia, and Ageusia, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Anosmia, Dysgeusia, and Ageusia, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,s05_raw_search,TRUE,s05_smoothed_search,FALSE,"Searches for: Anosmia, Dysgeusia, Ageusia (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,s06_raw_search,FALSE,s06_raw_search,FALSE,"Searches for: Laryngitis, Sore throat, Throat irritation",TRUE,"The average relative frequency of searches for Laryngitis, Sore throat, and Throat irritation, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Laryngitis, Sore throat, and Throat irritation, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set showed positive correlation with cases, especially after Omicron was declared a variant of concern by the WHO.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,s06_raw_search,TRUE,s06_smoothed_search,FALSE,"Searches for: Laryngitis, Sore throat, Throat irritation (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,scontrol_raw_search,FALSE,scontrol_raw_search,FALSE,"Searches for: Type 2 diabetes, Urinary tract infection, Hair loss, Candidiasis, Weight gain",TRUE,"The average relative frequency of searches for Type 2 diabetes, Urinary tract infection, Hair loss, Candidiasis, and Weight gain, in arbitrary units that are normalized against overall search patterns within each region.","The average relative frequency of searches for Type 2 diabetes, Urinary tract infection, Hair loss, Candidiasis, and Weight gain, in arbitrary units that are normalized against overall search patterns within each region. + +The symptoms in this set are not COVID-19 related. This signal is intended to be used as a negative control.",Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,scontrol_raw_search,TRUE,scontrol_smoothed_search,FALSE,"Searches for: Type 2 diabetes, Urinary tract infection, Hair loss, Candidiasis, Weight gain (7-day average)",TRUE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, +google-symptoms,sum_anosmia_ageusia_raw_search,FALSE,sum_anosmia_ageusia_raw_search,FALSE,Sum Anosmia Ageusia Searches,FALSE,"The sum of Google search volume for anosmia and ageusia related searches, in arbitrary units that are normalized for overall search users",,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/google-symptoms.html +google-symptoms,sum_anosmia_ageusia_raw_search,TRUE,sum_anosmia_ageusia_smoothed_search,TRUE,Sum Anosmia Ageusia Searches (7-day average),FALSE,,,Google Symptoms Search Trends,covid,Search volume,"county,hhs,hrr,msa,nation,state",day,Date,Value,raw,public,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hhs,confirmed_admissions_covid_1d,FALSE,confirmed_admissions_covid_1d,FALSE,Confirmed COVID-19 Admissions per day,TRUE,Sum of adult and pediatric confirmed COVID-19 hospital admissions occurring each day. ,The U.S. Department of Health & Human Services (HHS) receives reports from hospital systems on their capacity and admissions. This signal reports the number of adult and pediatric hospital admissions with confirmed COVID-19 occurring each day,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html +hhs,confirmed_admissions_covid_1d,TRUE,confirmed_admissions_covid_1d_prop,FALSE,Confirmed COVID-19 Admissions per day (per 100k people),TRUE,,,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +hhs,confirmed_admissions_covid_1d,,confirmed_admissions_covid_1d_7dav,TRUE,Confirmed COVID-19 Admissions per day (7-day average),TRUE,,,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hhs,confirmed_admissions_covid_1d,,confirmed_admissions_covid_1d_prop_7dav,FALSE,"Confirmed COVID-19 Admissions per day (7-day average, per 100k people)",TRUE,,,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d,FALSE,Confirmed Influenza Admissions per day,TRUE,All confirmed influenza hospital admissions occurring each day. ,The U.S. Department of Health & Human Services (HHS) receives reports from hospital systems on their capacity and admissions. This signal reports the number of adult and pediatric hospital admissions with confirmed influenza occurring each day,U.S. Department of Health & Human Services,flu,Hospitalizations,"hhs,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html +hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d_7dav,FALSE,Confirmed Influenza Admissions per day (7-day average),TRUE,,,U.S. Department of Health & Human Services,flu,Hospitalizations,"hhs,nation,state",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d_prop,FALSE,Confirmed Influenza Admissions per day (per 100k people),TRUE,,,U.S. Department of Health & Human Services,flu,Hospitalizations,"hhs,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +hhs,confirmed_admissions_influenza_1d,,confirmed_admissions_influenza_1d_prop_7dav,FALSE,"Confirmed Influenza Admissions per day (7-day average, per 100k people)",TRUE,,,U.S. Department of Health & Human Services,flu,Hospitalizations,"hhs,nation,state",day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hhs,sum_confirmed_suspected_admissions_covid_1d,FALSE,sum_confirmed_suspected_admissions_covid_1d,FALSE,Confirmed and Suspected COVID-19 Admissions per day,TRUE,Sum of adult and pediatric confirmed and suspected COVID-19 hospital admissions occurring each day. ,The U.S. Department of Health & Human Services (HHS) receives reports from hospital systems on their capacity and admissions. This signal reports the number of adult and pediatric hospital admissions with suspected COVID-19 occurring each day,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hhs.html +hhs,sum_confirmed_suspected_admissions_covid_1d,TRUE,sum_confirmed_suspected_admissions_covid_1d_prop,FALSE,Confirmed and Suspected COVID-19 Admissions per day (per 100k people),TRUE,,,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +hhs,sum_confirmed_suspected_admissions_covid_1d,,sum_confirmed_suspected_admissions_covid_1d_7dav,TRUE,Confirmed and Suspected COVID-19 Admissions per day (7-day average),TRUE,,,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hhs,sum_confirmed_suspected_admissions_covid_1d,,sum_confirmed_suspected_admissions_covid_1d_prop_7dav,FALSE,"Confirmed and Suspected COVID-19 Admissions per day (7-day average, per 100k people)",TRUE,,,U.S. Department of Health & Human Services,covid,Hospitalizations,"hhs,nation,state",day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hospital-admissions,smoothed_covid19,FALSE,smoothed_covid19,FALSE,COVID-19 Admissions (EMR and Claims),FALSE,Estimated percentage of new hospital admissions with COVID-associated diagnoses,"Estimated percentage of new hospital admissions with COVID-associated diagnoses, based on counts of electronic medical records and claims from health system partners, smoothed in time using a Gaussian linear smoother. + +Discontinued October 1, 2020.",Hospital Admissions From Claims,covid,Inpatient insurance claims,"county,hrr,msa,state",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hospital-admissions.html +hospital-admissions,smoothed_covid19,TRUE,smoothed_adj_covid19,FALSE,COVID-19 Admissions (EMR and Claims) (Day-adjusted),FALSE,,"{base_short_description}, based on counts of electronic medical records and claims from health system partners, smoothed in time using a Gaussian linear smoother, and adjusted to reduce day-of-week effects. + +Discontinued October 1, 2020.",Hospital Admissions From Claims,covid,Inpatient insurance claims,"county,hrr,msa,state",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +hospital-admissions,smoothed_covid19_from_claims,FALSE,smoothed_covid19_from_claims,FALSE,COVID-19 Admissions (Claims),TRUE,Estimated percentage of new hospital admissions with COVID-associated diagnoses,"Estimated percentage of new hospital admissions with COVID-associated diagnoses, based on counts of claims from health system partners, smoothed in time using a Gaussian linear smoother.",Hospital Admissions From Claims,covid,Inpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/hospital-admissions.html +hospital-admissions,smoothed_covid19_from_claims,TRUE,smoothed_adj_covid19_from_claims,FALSE,COVID-19 Admissions (Claims) (Day-adjusted),TRUE,,"{base_short_description}, based on counts of claims from health system partners, smoothed in time using a Gaussian linear smoother, and adjusted to reduce day-of-week effects.",Hospital Admissions From Claims,covid,Inpatient insurance claims,"county,hhs,hrr,msa,nation,state",day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,confirmed_cumulative_num,FALSE,confirmed_cumulative_num,FALSE,Confirmed COVID Cases (Cumulative),FALSE,Cumulative confirmed COVID cases,Confirmed COVID-19 cases as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/) and [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#compositional-signals-confirmed-cases-and-deaths +indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_num,TRUE,"Confirmed COVID Cases (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID cases, 7-day average ",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID cases, 7-day average, per 100k people",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_cumulative_prop,FALSE,"Confirmed COVID Cases (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID cases, per 100k people",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_incidence_num,TRUE,Confirmed COVID Cases (Daily new),FALSE,Daily new confirmed COVID cases,,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,confirmed_cumulative_num,TRUE,confirmed_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID cases, per 100k people",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,deaths_cumulative_num,FALSE,deaths_cumulative_num,FALSE,Confirmed COVID Deaths (Cumulative),FALSE,Cumulative confirmed COVID deaths,Confirmed COVID-19 deaths as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/) and [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#compositional-signals-confirmed-cases-and-deaths +indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_7dav_incidence_num,TRUE,"Confirmed COVID Deaths (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID deaths, 7-day average ",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_7dav_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID deaths, 7-day average, per 100k people",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_cumulative_prop,FALSE,"Confirmed COVID Deaths (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID deaths, per 100k people",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_incidence_num,TRUE,Confirmed COVID Deaths (Daily new),FALSE,Daily new confirmed COVID deaths,,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +indicator-combination-cases-deaths,deaths_cumulative_num,TRUE,deaths_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID deaths, per 100k people",,Composite COVID Cases & Deaths,covid,Deaths,,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, indicator-combination-nmf,nmf_day_doc_fbc_fbs_ght,nmf_day_doc_fbc_fbs_ght,nmf_day_doc_fbc_fbs_ght,FALSE,NMF Combination (with community symptoms),FALSE,Rank-1 NMF approximation to reconstruct 4 other signals.,"This signal uses a rank-1 approximation, from a nonnegative matrix factorization approach, to identify an underlying signal that best reconstructs the Doctor Visits (smoothed_adj_cli), Facebook Symptoms surveys (smoothed_cli), Facebook Symptoms in Community surveys (smoothed_hh_cmnty_cli), and Search Trends (smoothed_search) indicators. It does not include official reports (cases and deaths from the jhu-csse source). Higher values of the combined signal correspond to higher values of the other indicators, but the scale (units) of the combination is arbitrary. Note that the Search Trends source is not available at the county level, so county values of this signal do not use it. -Discontinued March 17, 2021.",day,Date,Value,raw,early,bad,FALSE,FALSE,FALSE,TRUE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#statistical-combination-signals +Discontinued March 17, 2021.",Statistical Combination (NMF),covid,,,day,Date,Value,raw,early,bad,FALSE,FALSE,FALSE,TRUE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#statistical-combination-signals indicator-combination-nmf,nmf_day_doc_fbs_ght,nmf_day_doc_fbs_ght,nmf_day_doc_fbs_ght,FALSE,NMF Combination (without community symptoms),FALSE,Rank-1 NMF approximation to reconstruct 3 other signals.,"This signal uses a rank-1 approximation, from a nonnegative matrix factorization approach, to identify an underlying signal that best reconstructs the Doctor Visits (doctor-visits:smoothed_cli), Facebook Symptoms surveys (fb-surveys:smoothed_cli), and Search Trends (ght:smoothed_search) indicators. It does not include official reports (cases and deaths from the jhu-csse source). Higher values of the combined signal correspond to higher values of the other indicators, but the scale (units) of the combination is arbitrary. Note that the Search Trends source is not available at the county level, so county values of this signal do not use it. -Discontinued May 28, 2020.",day,Date,Value,raw,early,bad,FALSE,FALSE,FALSE,TRUE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#statistical-combination-signals -jhu-csse,confirmed_cumulative_num,FALSE,confirmed_cumulative_num,FALSE,Confirmed COVID Cases (Cumulative),TRUE,Cumulative confirmed COVID cases,Confirmed COVID-19 cases as reported by [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html -jhu-csse,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_num,TRUE,"Confirmed COVID Cases (Daily new, 7-day average)",TRUE,"Daily new confirmed COVID cases, 7-day average ",,day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, 7-day average, per 100k people)",TRUE,"Daily new confirmed COVID cases, 7-day average, per 100k people",,day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,confirmed_cumulative_num,TRUE,confirmed_cumulative_prop,FALSE,"Confirmed COVID Cases (Cumulative, per 100k people)",TRUE,"Cumulative confirmed COVID cases, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -jhu-csse,confirmed_cumulative_num,TRUE,confirmed_incidence_num,TRUE,Confirmed COVID Cases (Daily new),TRUE,Daily new confirmed COVID cases,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,confirmed_cumulative_num,TRUE,confirmed_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, per 100k people)",TRUE,"Daily new confirmed COVID cases, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,deaths_cumulative_num,FALSE,deaths_cumulative_num,FALSE,Confirmed COVID Deaths (Cumulative),TRUE,Cumulative confirmed COVID deaths,Confirmed COVID-19 deaths as reported by [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),day,Date,Value,count,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html -jhu-csse,deaths_cumulative_num,TRUE,deaths_7dav_incidence_num,TRUE,"Confirmed COVID Deaths (Daily new, 7-day average)",TRUE,"Daily new confirmed COVID deaths, 7-day average ",,day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,deaths_cumulative_num,TRUE,deaths_7dav_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, 7-day average, per 100k people)",TRUE,"Daily new confirmed COVID deaths, 7-day average, per 100k people",,day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,deaths_cumulative_num,TRUE,deaths_cumulative_prop,FALSE,"Confirmed COVID Deaths (Cumulative, per 100k people)",TRUE,"Cumulative confirmed COVID deaths, per 100k people",,day,Date,Value,per100k,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -jhu-csse,deaths_cumulative_num,TRUE,deaths_incidence_num,TRUE,Confirmed COVID Deaths (Daily new),TRUE,Daily new confirmed COVID deaths,,day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -jhu-csse,deaths_cumulative_num,TRUE,deaths_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, per 100k people)",TRUE,"Daily new confirmed COVID deaths, per 100k people",,day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -nchs-mortality,deaths_allcause_incidence_num,FALSE,deaths_allcause_incidence_num,FALSE,All Causes Deaths (Weekly new),TRUE,Number of weekly new deaths from all causes,"{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_allcause_incidence_num,TRUE,deaths_allcause_incidence_prop,FALSE,"All Causes Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths from all causes, per 100k people","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -nchs-mortality,deaths_covid_and_pneumonia_notflu_incidence_num,FALSE,deaths_covid_and_pneumonia_notflu_incidence_num,FALSE,COVID and Pneumonia excl. Influenza Deaths (Weekly new),TRUE,"Number of weekly new deaths involving COVID-19 and Pneumonia, excluding Influenza ","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_covid_and_pneumonia_notflu_incidence_num,TRUE,deaths_covid_and_pneumonia_notflu_incidence_prop,FALSE,"COVID and Pneumonia excl. Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving COVID-19 and Pneumonia, excluding Influenza, per 100k people","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -nchs-mortality,deaths_covid_incidence_num,FALSE,deaths_covid_incidence_num,FALSE,Confirmed or Presumed COVID Deaths (Weekly new),TRUE,Number of weekly new deaths with confirmed or presumed COVID-19 ,"{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_covid_incidence_num,TRUE,deaths_covid_incidence_prop,FALSE,"Confirmed or Presumed COVID Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths with confirmed or presumed COVID-19, per 100k people","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -nchs-mortality,deaths_flu_incidence_num,FALSE,deaths_flu_incidence_num,FALSE,Influenza Deaths (Weekly new),TRUE,"Number of weekly new deaths involving Influenza and at least one of (Pneumonia, COVID-19)","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_flu_incidence_num,TRUE,deaths_flu_incidence_prop,FALSE,"Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving Influenza and at least one of (Pneumonia, COVID-19), per 100k people","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -nchs-mortality,deaths_percent_of_expected,FALSE,deaths_percent_of_expected,FALSE,Percentage of Expected Deaths,TRUE,Weekly new deaths for all causes in 2020 as a percentage of the average number across the same week in 2017-2019.,"{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Percentage,percent,late,neutral,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_pneumonia_notflu_incidence_num,FALSE,deaths_pneumonia_notflu_incidence_num,FALSE,Pneumonia excl. Influenza Deaths (Weekly new),TRUE,"Number of weekly new deaths involving Pneumonia, excluding Influenza deaths ","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_pneumonia_notflu_incidence_num,TRUE,deaths_pneumonia_notflu_incidence_prop,FALSE,"Pneumonia excl. Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving Pneumonia, excluding Influenza deaths, per 100k people","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -nchs-mortality,deaths_pneumonia_or_flu_or_covid_incidence_num,FALSE,deaths_pneumonia_or_flu_or_covid_incidence_num,FALSE,"COVID, Pneumonia or Influenza Deaths (Weekly new)",TRUE,"Number of weekly new deaths involving Pneumonia, Influenza, or COVID-19 ","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html -nchs-mortality,deaths_pneumonia_or_flu_or_covid_incidence_num,TRUE,deaths_pneumonia_or_flu_or_covid_incidence_prop,FALSE,"COVID, Pneumonia or Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving Pneumonia, Influenza, or COVID-19, per 100k people","{short_description}. - -National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -quidel-covid-ag,covid_ag_raw_pct_positive,FALSE,covid_ag_raw_pct_positive,FALSE,COVID-19 Antigen Tests: Percent Positive,TRUE,Percentage of antigen tests that were positive for COVID-19,"When a patient (whether at a doctor's office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19.",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive,TRUE,covid_ag_smoothed_pct_positive,FALSE,{base_name} (7-day average),TRUE,,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-covid-ag,covid_ag_raw_pct_positive_age_0_17,FALSE,covid_ag_raw_pct_positive_age_0_17,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 0-17",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 0-17,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 0-17",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive_age_0_17,TRUE,covid_ag_smoothed_pct_positive_age_0_17,FALSE,{base_name} (Smoothed),TRUE,,"{base_description}, smoothed using a 7-day moving average and geographical pooling",day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-covid-ag,covid_ag_raw_pct_positive_age_0_4,FALSE,covid_ag_raw_pct_positive_age_0_4,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 0-4",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 0-4,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 0-4",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive_age_0_4,TRUE,covid_ag_smoothed_pct_positive_age_0_4,FALSE,{base_name} (Smoothed),TRUE,,"{base_description}, smoothed using a 7-day moving average and geographical pooling",day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-covid-ag,covid_ag_raw_pct_positive_age_18_49,FALSE,covid_ag_raw_pct_positive_age_18_49,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 18-49",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 18-49,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 18-49",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive_age_18_49,TRUE,covid_ag_smoothed_pct_positive_age_18_49,FALSE,{base_name} (Smoothed),TRUE,,"{base_description}, smoothed using a 7-day moving average and geographical pooling",day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-covid-ag,covid_ag_raw_pct_positive_age_5_17,FALSE,covid_ag_raw_pct_positive_age_5_17,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 5-17",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 5-17,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 5-17",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive_age_5_17,TRUE,covid_ag_smoothed_pct_positive_age_5_17,FALSE,{base_name} (Smoothed),TRUE,,"{base_description}, smoothed using a 7-day moving average and geographical pooling",day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-covid-ag,covid_ag_raw_pct_positive_age_50_64,FALSE,covid_ag_raw_pct_positive_age_50_64,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 50-64",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 50-64,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 50-64",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive_age_50_64,TRUE,covid_ag_smoothed_pct_positive_age_50_64,FALSE,{base_name} (Smoothed),TRUE,,"{base_description}, smoothed using a 7-day moving average and geographical pooling",day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-covid-ag,covid_ag_raw_pct_positive_age_65plus,FALSE,covid_ag_raw_pct_positive_age_65plus,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 65+",TRUE,Percentage of antigen tests that were positive for COVID-19 among people age 65 and above,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 65 and above",day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) -quidel-covid-ag,covid_ag_raw_pct_positive_age_65plus,TRUE,covid_ag_smoothed_pct_positive_age_65plus,FALSE,{base_name} (Smoothed),TRUE,,"{base_description}, smoothed using a 7-day moving average and geographical pooling",day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-flu,raw_pct_negative,FALSE,raw_pct_negative,FALSE,Flu Tests: Percent Negative,FALSE,"The percentage of flu tests that are negative, suggesting the patient's illness has another cause, possibly COVID-19 ","{short_description}. - -Discontinued May 19, 2020.",day,Date,Percentage,percent,late,bad,FALSE,FALSE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#flu-tests -quidel-flu,raw_pct_negative,TRUE,smoothed_pct_negative,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -quidel-flu,raw_tests_per_device,FALSE,raw_tests_per_device,FALSE,Flu Tests: Tests Per Device,FALSE,The average number of flu tests conducted by each testing device; measures volume of testing ,"{short_description}. - -Discontinued May 19, 2020.",day,Date,Number of Tests,count,late,bad,FALSE,FALSE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#flu-tests -quidel-flu,raw_tests_per_device,TRUE,smoothed_tests_per_device,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Number of Tests,count,late,bad,TRUE,FALSE,FALSE,TRUE,TRUE, -safegraph-daily,completely_home_prop,FALSE,completely_home_prop,FALSE,Completely Home,FALSE,The fraction of mobile devices that did not leave the immediate area of their home,"{short_description}. This is SafeGraph’s completely_home_device_count / device_count. - -Discontinued April 19th, 2021.",day,Date,Value,per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,completely_home_prop,TRUE,completely_home_prop_7dav,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Value,per100k,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,full_time_work_prop,FALSE,full_time_work_prop,FALSE,Full Time Work/School,FALSE,The fraction of mobile devices that spent more than 6 hours at one location other than their home during the daytime,"{short_description}. This is SafeGraph’s full_time_work_behavior_devices / device_count. - -Discontinued April 19th, 2021.",day,Date,Value,per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,full_time_work_prop,TRUE,full_time_work_prop_7dav,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Value,per100k,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,median_home_dwell_time,FALSE,median_home_dwell_time,FALSE,Median Home Dwell Time,FALSE,"The median time spent at home for all devices at this location for this time period, in minutes","{short_description}. - -Discontinued April 19th, 2021.",day,Date,Value,count,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,median_home_dwell_time,TRUE,median_home_dwell_time_7dav,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Value,count,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,part_time_work_prop,FALSE,part_time_work_prop,FALSE,Part Time Work/School,FALSE,The fraction of devices that spent between 3 and 6 hours at one location other than their home during the daytime,"{short_description}. This is SafeGraph’s part_time_work_behavior_devices / device_count. - -Discontinued April 19th, 2021.",day,Date,Value,per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-daily,part_time_work_prop,TRUE,part_time_work_prop_7dav,FALSE,{base_name} (7-day average),FALSE,,,day,Date,Value,per100k,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, -safegraph-weekly,bars_visit_num,FALSE,bars_visit_num,FALSE,Bar Visits,TRUE,"Daily number of visits to bars, based on SafeGraph's Weekly Patterns dataset","Delphi receives data from [SafeGraph](https://docs.safegraph.com/docs/weekly-patterns), which collects weekly insights on Points of Interest (POI) using anonymized location data from mobile phones. We select locations that qualify as ""Drinking Places (alcoholic beverages)"" from all the [core places](https://docs.safegraph.com/v4.0/docs/places-manual#section-core-places), then count the number of visits. - -Note that these counts only include people whose visits are tracked because they are in SafeGraph's panel; they do not include all bar visits by everyone in the population.",day,Date,Visits,count,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-weekly,bars_visit_num,TRUE,bars_visit_prop,FALSE,{base_name} (per 100k people),TRUE,,,day,Date,"Visits per 100,000 people",per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-weekly,restaurants_visit_num,FALSE,restaurants_visit_num,FALSE,Restaurant Visits,TRUE,"Daily number of visits to restaurants, based on SafeGraph's Weekly Patterns dataset","Delphi receives data from [SafeGraph](https://docs.safegraph.com/docs/weekly-patterns), which collects weekly insights on Points of Interest (POI) using anonymized location data from mobile phones. We select locations that qualify as ""Full-Service Restaurants"" from all the [core places](https://docs.safegraph.com/v4.0/docs/places-manual#section-core-places), then count the number of visits. - -Note that these counts only include people whose visits are tracked because they are in SafeGraph's panel; they do not include all restaurant visits by everyone in the population.",day,Date,Visits,count,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -safegraph-weekly,restaurants_visit_num,TRUE,restaurants_visit_prop,FALSE,{base_name} (per 100k people),TRUE,,,day,Date,"Visits per 100,000 people",per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, -usa-facts,confirmed_cumulative_num,FALSE,confirmed_cumulative_num,FALSE,Confirmed COVID Cases (Cumulative),TRUE,Cumulative confirmed COVID cases,Confirmed COVID-19 cases as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/),day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -usa-facts,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_num,TRUE,"Confirmed COVID Cases (Daily new, 7-day average)",TRUE,"Daily new confirmed COVID cases, 7-day average ",,day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -usa-facts,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, 7-day average, per 100k people)",TRUE,"Daily new confirmed COVID cases, 7-day average, per 100k people",,day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -usa-facts,confirmed_cumulative_num,TRUE,confirmed_cumulative_prop,FALSE,"Confirmed COVID Cases (Cumulative, per 100k people)",TRUE,"Cumulative confirmed COVID cases, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -usa-facts,confirmed_cumulative_num,TRUE,confirmed_incidence_num,TRUE,Confirmed COVID Cases (Daily new),TRUE,Daily new confirmed COVID cases,,day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -usa-facts,confirmed_cumulative_num,TRUE,confirmed_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, per 100k people)",TRUE,"Daily new confirmed COVID cases, per 100k people",,day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -usa-facts,deaths_cumulative_num,FALSE,deaths_cumulative_num,FALSE,Confirmed COVID Deaths (Cumulative),TRUE,Cumulative confirmed COVID deaths,Confirmed COVID-19 deaths as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/),day,Date,Value,count,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -usa-facts,deaths_cumulative_num,TRUE,deaths_7dav_incidence_num,TRUE,"Confirmed COVID Deaths (Daily new, 7-day average)",TRUE,"Daily new confirmed COVID deaths, 7-day average ",,day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -usa-facts,deaths_cumulative_num,TRUE,deaths_7dav_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, 7-day average, per 100k people)",TRUE,"Daily new confirmed COVID deaths, 7-day average, per 100k people",,day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, -usa-facts,deaths_cumulative_num,TRUE,deaths_cumulative_prop,FALSE,"Confirmed COVID Deaths (Cumulative, per 100k people)",TRUE,"Cumulative confirmed COVID deaths, per 100k people",,day,Date,Value,per100k,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE, -usa-facts,deaths_cumulative_num,TRUE,deaths_incidence_num,TRUE,Confirmed COVID Deaths (Daily new),TRUE,Daily new confirmed COVID deaths,,day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, -usa-facts,deaths_cumulative_num,TRUE,deaths_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, per 100k people)",TRUE,"Daily new confirmed COVID deaths, per 100k people",,day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, \ No newline at end of file +Discontinued May 28, 2020.",Statistical Combination (NMF),covid,,,day,Date,Value,raw,early,bad,FALSE,FALSE,FALSE,TRUE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/indicator-combination-inactive.html#statistical-combination-signals +jhu-csse,confirmed_cumulative_num,FALSE,confirmed_cumulative_num,FALSE,Confirmed COVID Cases (Cumulative),FALSE,Cumulative confirmed COVID cases,Confirmed COVID-19 cases as reported by [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),Johns Hopkins University,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html +jhu-csse,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_num,TRUE,"Confirmed COVID Cases (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID cases, 7-day average ",,Johns Hopkins University,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID cases, 7-day average, per 100k people",,Johns Hopkins University,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,confirmed_cumulative_num,TRUE,confirmed_cumulative_prop,FALSE,"Confirmed COVID Cases (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID cases, per 100k people",,Johns Hopkins University,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +jhu-csse,confirmed_cumulative_num,TRUE,confirmed_incidence_num,TRUE,Confirmed COVID Cases (Daily new),FALSE,Daily new confirmed COVID cases,,Johns Hopkins University,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,confirmed_cumulative_num,TRUE,confirmed_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID cases, per 100k people",,Johns Hopkins University,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,deaths_cumulative_num,FALSE,deaths_cumulative_num,FALSE,Confirmed COVID Deaths (Cumulative),FALSE,Cumulative confirmed COVID deaths,Confirmed COVID-19 deaths as reported by [JHU-CSSE](https://github.com/CSSEGISandData/COVID-19),Johns Hopkins University,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/jhu-csse.html +jhu-csse,deaths_cumulative_num,TRUE,deaths_7dav_incidence_num,TRUE,"Confirmed COVID Deaths (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID deaths, 7-day average ",,Johns Hopkins University,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,deaths_cumulative_num,TRUE,deaths_7dav_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID deaths, 7-day average, per 100k people",,Johns Hopkins University,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,deaths_cumulative_num,TRUE,deaths_cumulative_prop,FALSE,"Confirmed COVID Deaths (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID deaths, per 100k people",,Johns Hopkins University,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +jhu-csse,deaths_cumulative_num,TRUE,deaths_incidence_num,TRUE,Confirmed COVID Deaths (Daily new),FALSE,Daily new confirmed COVID deaths,,Johns Hopkins University,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +jhu-csse,deaths_cumulative_num,TRUE,deaths_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID deaths, per 100k people",,Johns Hopkins University,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +nchs-mortality,deaths_allcause_incidence_num,FALSE,deaths_allcause_incidence_num,FALSE,All Causes Deaths (Weekly new),TRUE,Number of weekly new deaths from all causes,"Number of weekly new deaths from all causes. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,n/a,Deaths,state,week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_allcause_incidence_num,TRUE,deaths_allcause_incidence_prop,FALSE,"All Causes Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths from all causes, per 100k people","Number of weekly new deaths from all causes, per 100k people. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,n/a,Deaths,state,week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +nchs-mortality,deaths_covid_and_pneumonia_notflu_incidence_num,FALSE,deaths_covid_and_pneumonia_notflu_incidence_num,FALSE,COVID and Pneumonia excl. Influenza Deaths (Weekly new),TRUE,"Number of weekly new deaths involving COVID-19 and Pneumonia, excluding Influenza ","Number of weekly new deaths involving COVID-19 and Pneumonia, excluding Influenza . + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,"covid, pneumonia",Deaths,state,week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_covid_and_pneumonia_notflu_incidence_num,TRUE,deaths_covid_and_pneumonia_notflu_incidence_prop,FALSE,"COVID and Pneumonia excl. Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving COVID-19 and Pneumonia, excluding Influenza, per 100k people","Number of weekly new deaths involving COVID-19 and Pneumonia, excluding Influenza, per 100k people. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,covid,Deaths,state,week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +nchs-mortality,deaths_covid_incidence_num,FALSE,deaths_covid_incidence_num,FALSE,Confirmed or Presumed COVID Deaths (Weekly new),TRUE,Number of weekly new deaths with confirmed or presumed COVID-19 ,"Number of weekly new deaths with confirmed or presumed COVID-19 . + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,covid,Deaths,state,week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_covid_incidence_num,TRUE,deaths_covid_incidence_prop,FALSE,"Confirmed or Presumed COVID Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths with confirmed or presumed COVID-19, per 100k people","Number of weekly new deaths with confirmed or presumed COVID-19, per 100k people. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,covid,Deaths,state,week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +nchs-mortality,deaths_flu_incidence_num,FALSE,deaths_flu_incidence_num,FALSE,Influenza Deaths (Weekly new),TRUE,"Number of weekly new deaths involving Influenza and at least one of (Pneumonia, COVID-19)","Number of weekly new deaths involving Influenza and at least one of (Pneumonia, COVID-19). + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,flu,Deaths,state,week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_flu_incidence_num,TRUE,deaths_flu_incidence_prop,FALSE,"Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving Influenza and at least one of (Pneumonia, COVID-19), per 100k people","Number of weekly new deaths involving Influenza and at least one of (Pneumonia, COVID-19), per 100k people. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,flu,Deaths,state,week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +nchs-mortality,deaths_percent_of_expected,FALSE,deaths_percent_of_expected,FALSE,Percentage of Expected Deaths,TRUE,Weekly new deaths for all causes in 2020 as a percentage of the average number across the same week in 2017-2019.,"Weekly new deaths for all causes in 2020 as a percentage of the average number across the same week in 2017-2019.. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,n/a,Deaths,state,week,Week,Percentage,percent,late,neutral,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_pneumonia_notflu_incidence_num,FALSE,deaths_pneumonia_notflu_incidence_num,FALSE,Pneumonia excl. Influenza Deaths (Weekly new),TRUE,"Number of weekly new deaths involving Pneumonia, excluding Influenza deaths ","Number of weekly new deaths involving Pneumonia, excluding Influenza deaths . + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,pneumonia,Deaths,state,week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_pneumonia_notflu_incidence_num,TRUE,deaths_pneumonia_notflu_incidence_prop,FALSE,"Pneumonia excl. Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving Pneumonia, excluding Influenza deaths, per 100k people","Number of weekly new deaths involving Pneumonia, excluding Influenza deaths, per 100k people. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,pneumonia,Deaths,state,week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +nchs-mortality,deaths_pneumonia_or_flu_or_covid_incidence_num,FALSE,deaths_pneumonia_or_flu_or_covid_incidence_num,FALSE,"COVID, Pneumonia or Influenza Deaths (Weekly new)",TRUE,"Number of weekly new deaths involving Pneumonia, Influenza, or COVID-19 ","Number of weekly new deaths involving Pneumonia, Influenza, or COVID-19 . + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,"pneumonia, flu, covid",Deaths,state,week,Week,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/nchs-mortality.html +nchs-mortality,deaths_pneumonia_or_flu_or_covid_incidence_num,TRUE,deaths_pneumonia_or_flu_or_covid_incidence_prop,FALSE,"COVID, Pneumonia or Influenza Deaths (Weekly new, per 100k people)",TRUE,"Number of weekly new deaths involving Pneumonia, Influenza, or COVID-19, per 100k people","Number of weekly new deaths involving Pneumonia, Influenza, or COVID-19, per 100k people. + +National provisional death counts is based on death certificate data received and coded by the National Center for Health Statistics ([NCHS](https://www.cdc.gov/nchs/nvss/vsrr/COVID19/index.htm))",NCHS Mortality Data,"pneumonia, flu, covid",Deaths,state,week,Week,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +quidel-covid-ag,covid_ag_raw_pct_positive,FALSE,covid_ag_raw_pct_positive,FALSE,COVID-19 Antigen Tests: Percent Positive,TRUE,Percentage of antigen tests that were positive for COVID-19,"When a patient (whether at a doctor's office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19.",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive,TRUE,covid_ag_smoothed_pct_positive,FALSE,COVID-19 Antigen Tests: Percent Positive (7-day average),TRUE,,,Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-covid-ag,covid_ag_raw_pct_positive_age_0_17,FALSE,covid_ag_raw_pct_positive_age_0_17,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 0-17",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 0-17,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 0-17",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive_age_0_17,TRUE,covid_ag_smoothed_pct_positive_age_0_17,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 0-17 (Smoothed)",TRUE,,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 0-17, smoothed using a 7-day moving average and geographical pooling",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-covid-ag,covid_ag_raw_pct_positive_age_0_4,FALSE,covid_ag_raw_pct_positive_age_0_4,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 0-4",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 0-4,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 0-4",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive_age_0_4,TRUE,covid_ag_smoothed_pct_positive_age_0_4,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 0-4 (Smoothed)",TRUE,,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 0-4, smoothed using a 7-day moving average and geographical pooling",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-covid-ag,covid_ag_raw_pct_positive_age_18_49,FALSE,covid_ag_raw_pct_positive_age_18_49,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 18-49",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 18-49,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 18-49",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive_age_18_49,TRUE,covid_ag_smoothed_pct_positive_age_18_49,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 18-49 (Smoothed)",TRUE,,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 18-49, smoothed using a 7-day moving average and geographical pooling",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-covid-ag,covid_ag_raw_pct_positive_age_5_17,FALSE,covid_ag_raw_pct_positive_age_5_17,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 5-17",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 5-17,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 5-17",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive_age_5_17,TRUE,covid_ag_smoothed_pct_positive_age_5_17,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 5-17 (Smoothed)",TRUE,,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 5-17, smoothed using a 7-day moving average and geographical pooling",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-covid-ag,covid_ag_raw_pct_positive_age_50_64,FALSE,covid_ag_raw_pct_positive_age_50_64,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 50-64",TRUE,Percentage of antigen tests that were positive for COVID-19 among people ages 50-64,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 50-64",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive_age_50_64,TRUE,covid_ag_smoothed_pct_positive_age_50_64,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 50-64 (Smoothed)",TRUE,,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 50-64, smoothed using a 7-day moving average and geographical pooling",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-covid-ag,covid_ag_raw_pct_positive_age_65plus,FALSE,covid_ag_raw_pct_positive_age_65plus,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 65+",TRUE,Percentage of antigen tests that were positive for COVID-19 among people age 65 and above,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 65 and above",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,FALSE,FALSE,FALSE,TRUE,TRUE,[Technical description](https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#covid-19-tests) +quidel-covid-ag,covid_ag_raw_pct_positive_age_65plus,TRUE,covid_ag_smoothed_pct_positive_age_65plus,FALSE,"COVID-19 Antigen Tests: Percent Positive, Ages 65+ (Smoothed)",TRUE,,"When a patient (whether at a doctor’s office, clinic, or hospital) has COVID-like symptoms, doctors may order an antigen test. An antigen test can detect parts of the virus that are present during an active infection. This is in contrast with antibody tests, which detect parts of the immune system that react to the virus, but which persist long after the infection has passed. For this signal, we compute the percentage of antigen tests performed that were positive for COVID-19 among people ages 65 and above, smoothed using a 7-day moving average and geographical pooling",Quidel Inc. (COVID),covid,Testing,,day,Date,Percentage,percent,cases_testing,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-flu,raw_pct_negative,FALSE,raw_pct_negative,FALSE,Flu Tests: Percent Negative,FALSE,"The percentage of flu tests that are negative, suggesting the patient's illness has another cause, possibly COVID-19 ","The percentage of flu tests that are negative, suggesting the patient's illness has another cause, possibly COVID-19 . + +Discontinued May 19, 2020.",Quidel Inc. (Flu),flu,Testing,,day,Date,Percentage,percent,late,bad,FALSE,FALSE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#flu-tests +quidel-flu,raw_pct_negative,TRUE,smoothed_pct_negative,FALSE,Flu Tests: Percent Negative (7-day average),FALSE,,,Quidel Inc. (Flu),flu,Testing,,day,Date,Percentage,percent,late,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +quidel-flu,raw_tests_per_device,FALSE,raw_tests_per_device,FALSE,Flu Tests: Tests Per Device,FALSE,The average number of flu tests conducted by each testing device; measures volume of testing ,"The average number of flu tests conducted by each testing device; measures volume of testing . + +Discontinued May 19, 2020.",Quidel Inc. (Flu),flu,Testing,,day,Date,Number of Tests,count,late,bad,FALSE,FALSE,FALSE,TRUE,TRUE,https://cmu-delphi.github.io/delphi-epidata/api/covidcast-signals/quidel.html#flu-tests +quidel-flu,raw_tests_per_device,TRUE,smoothed_tests_per_device,FALSE,Flu Tests: Tests Per Device (7-day average),FALSE,,,Quidel Inc. (Flu),flu,Testing,,day,Date,Number of Tests,count,late,bad,TRUE,FALSE,FALSE,TRUE,TRUE, +safegraph-daily,completely_home_prop,FALSE,completely_home_prop,FALSE,Completely Home,FALSE,The fraction of mobile devices that did not leave the immediate area of their home,"The fraction of mobile devices that did not leave the immediate area of their home. This is SafeGraph’s completely_home_device_count / device_count. + +Discontinued April 19th, 2021.",SafeGraph (Daily),n/a,Mobility,,day,Date,Value,per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,completely_home_prop,TRUE,completely_home_prop_7dav,FALSE,Completely Home (7-day average),FALSE,,,SafeGraph (Daily),n/a,Mobility,,day,Date,Value,per100k,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,full_time_work_prop,FALSE,full_time_work_prop,FALSE,Full Time Work/School,FALSE,The fraction of mobile devices that spent more than 6 hours at one location other than their home during the daytime,"The fraction of mobile devices that spent more than 6 hours at one location other than their home during the daytime. This is SafeGraph’s full_time_work_behavior_devices / device_count. + +Discontinued April 19th, 2021.",SafeGraph (Daily),n/a,Mobility,,day,Date,Value,per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,full_time_work_prop,TRUE,full_time_work_prop_7dav,FALSE,Full Time Work/School (7-day average),FALSE,,,SafeGraph (Daily),n/a,Mobility,,day,Date,Value,per100k,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,median_home_dwell_time,FALSE,median_home_dwell_time,FALSE,Median Home Dwell Time,FALSE,"The median time spent at home for all devices at this location for this time period, in minutes","The median time spent at home for all devices at this location for this time period, in minutes. + +Discontinued April 19th, 2021.",SafeGraph (Daily),n/a,Mobility,,day,Date,Value,count,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,median_home_dwell_time,TRUE,median_home_dwell_time_7dav,FALSE,Median Home Dwell Time (7-day average),FALSE,,,SafeGraph (Daily),n/a,Mobility,,day,Date,Value,count,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,part_time_work_prop,FALSE,part_time_work_prop,FALSE,Part Time Work/School,FALSE,The fraction of devices that spent between 3 and 6 hours at one location other than their home during the daytime,"The fraction of devices that spent between 3 and 6 hours at one location other than their home during the daytime. This is SafeGraph’s part_time_work_behavior_devices / device_count. + +Discontinued April 19th, 2021.",SafeGraph (Daily),n/a,Mobility,,day,Date,Value,per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-daily,part_time_work_prop,TRUE,part_time_work_prop_7dav,FALSE,Part Time Work/School (7-day average),FALSE,,,SafeGraph (Daily),n/a,Mobility,,day,Date,Value,per100k,public,neutral,TRUE,FALSE,FALSE,FALSE,FALSE, +safegraph-weekly,bars_visit_num,FALSE,bars_visit_num,FALSE,Bar Visits,FALSE,"Daily number of visits to bars, based on SafeGraph's Weekly Patterns dataset","Delphi receives data from [SafeGraph](https://docs.safegraph.com/docs/weekly-patterns), which collects weekly insights on Points of Interest (POI) using anonymized location data from mobile phones. We select locations that qualify as ""Drinking Places (alcoholic beverages)"" from all the [core places](https://docs.safegraph.com/v4.0/docs/places-manual#section-core-places), then count the number of visits. + +Note that these counts only include people whose visits are tracked because they are in SafeGraph's panel; they do not include all bar visits by everyone in the population.",SafeGraph (Weekly),n/a,Mobility,,day,Date,Visits,count,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-weekly,bars_visit_num,TRUE,bars_visit_prop,FALSE,Bar Visits (per 100k people),FALSE,,,SafeGraph (Weekly),n/a,Mobility,,day,Date,"Visits per 100,000 people",per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-weekly,restaurants_visit_num,FALSE,restaurants_visit_num,FALSE,Restaurant Visits,FALSE,"Daily number of visits to restaurants, based on SafeGraph's Weekly Patterns dataset","Delphi receives data from [SafeGraph](https://docs.safegraph.com/docs/weekly-patterns), which collects weekly insights on Points of Interest (POI) using anonymized location data from mobile phones. We select locations that qualify as ""Full-Service Restaurants"" from all the [core places](https://docs.safegraph.com/v4.0/docs/places-manual#section-core-places), then count the number of visits. + +Note that these counts only include people whose visits are tracked because they are in SafeGraph's panel; they do not include all restaurant visits by everyone in the population.",SafeGraph (Weekly),n/a,Mobility,,day,Date,Visits,count,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +safegraph-weekly,restaurants_visit_num,TRUE,restaurants_visit_prop,FALSE,Restaurant Visits (per 100k people),FALSE,,,SafeGraph (Weekly),n/a,Mobility,,day,Date,"Visits per 100,000 people",per100k,public,neutral,FALSE,FALSE,FALSE,FALSE,FALSE, +usa-facts,confirmed_cumulative_num,FALSE,confirmed_cumulative_num,FALSE,Confirmed COVID Cases (Cumulative),FALSE,Cumulative confirmed COVID cases,Confirmed COVID-19 cases as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/),USAFacts,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +usa-facts,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_num,TRUE,"Confirmed COVID Cases (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID cases, 7-day average ",,USAFacts,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +usa-facts,confirmed_cumulative_num,TRUE,confirmed_7dav_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID cases, 7-day average, per 100k people",,USAFacts,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,cases_testing,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +usa-facts,confirmed_cumulative_num,TRUE,confirmed_cumulative_prop,FALSE,"Confirmed COVID Cases (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID cases, per 100k people",,USAFacts,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +usa-facts,confirmed_cumulative_num,TRUE,confirmed_incidence_num,TRUE,Confirmed COVID Cases (Daily new),FALSE,Daily new confirmed COVID cases,,USAFacts,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +usa-facts,confirmed_cumulative_num,TRUE,confirmed_incidence_prop,FALSE,"Confirmed COVID Cases (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID cases, per 100k people",,USAFacts,covid,Cases,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,cases_testing,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +usa-facts,deaths_cumulative_num,FALSE,deaths_cumulative_num,FALSE,Confirmed COVID Deaths (Cumulative),FALSE,Cumulative confirmed COVID deaths,Confirmed COVID-19 deaths as reported by [USAFacts](https://usafacts.org/visualizations/coronavirus-covid-19-spread-map/),USAFacts,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +usa-facts,deaths_cumulative_num,TRUE,deaths_7dav_incidence_num,TRUE,"Confirmed COVID Deaths (Daily new, 7-day average)",FALSE,"Daily new confirmed COVID deaths, 7-day average ",,USAFacts,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +usa-facts,deaths_cumulative_num,TRUE,deaths_7dav_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, 7-day average, per 100k people)",FALSE,"Daily new confirmed COVID deaths, 7-day average, per 100k people",,USAFacts,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,late,bad,TRUE,FALSE,FALSE,FALSE,FALSE, +usa-facts,deaths_cumulative_num,TRUE,deaths_cumulative_prop,FALSE,"Confirmed COVID Deaths (Cumulative, per 100k people)",FALSE,"Cumulative confirmed COVID deaths, per 100k people",,USAFacts,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,TRUE,FALSE,FALSE, +usa-facts,deaths_cumulative_num,TRUE,deaths_incidence_num,TRUE,Confirmed COVID Deaths (Daily new),FALSE,Daily new confirmed COVID deaths,,USAFacts,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,count,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, +usa-facts,deaths_cumulative_num,TRUE,deaths_incidence_prop,FALSE,"Confirmed COVID Deaths (Daily new, per 100k people)",FALSE,"Daily new confirmed COVID deaths, per 100k people",,USAFacts,covid,Deaths,"county,hhs,hrr,msa,nation,state",day,Date,Value,per100k,late,bad,FALSE,FALSE,FALSE,FALSE,FALSE, \ No newline at end of file diff --git a/src/server/endpoints/covidcast_utils/model.py b/src/server/endpoints/covidcast_utils/model.py index 4cc78888e..6a62df796 100644 --- a/src/server/endpoints/covidcast_utils/model.py +++ b/src/server/endpoints/covidcast_utils/model.py @@ -1,4 +1,4 @@ -from dataclasses import asdict, dataclass, field +from dataclasses import asdict, dataclass, field, fields from typing import Callable, Optional, Dict, List, Set, Tuple from enum import Enum from pathlib import Path @@ -210,8 +210,8 @@ def _load_data_signals(sources: List[DataSource]): data_signals_df: pd.DataFrame = pd.read_csv(_base_dir / "db_signals.csv") data_signals_df = data_signals_df.replace({np.nan: None}) data_signals_df.columns = map(_clean_column, data_signals_df.columns) - ignore_columns = {"base_is_other"} - data_signals: List[DataSignal] = [DataSignal(**{k: v for k, v in d.items() if k not in ignore_columns}) for d in data_signals_df.to_dict(orient="records")] + datasignal_fields = {f.name for f in fields(DataSignal)} + data_signals: List[DataSignal] = [DataSignal(**{k: v for k, v in d.items() if k in datasignal_fields}) for d in data_signals_df.to_dict(orient="records")] data_signals_df.set_index(["source", "signal"]) by_source_id = {d.key: d for d in data_signals} diff --git a/tests/server/dev_test_granular_sensor_authentication.py b/tests/server/dev_test_granular_sensor_authentication.py index bc742392a..2309c626e 100644 --- a/tests/server/dev_test_granular_sensor_authentication.py +++ b/tests/server/dev_test_granular_sensor_authentication.py @@ -1,4 +1,4 @@ -"""Unit tests for granular sensor authentication in api.php.""" +"""Unit tests for granular sensor authentication.""" # standard library import unittest diff --git a/tests/server/endpoints/test_nidss_flu.py b/tests/server/endpoints/test_nidss_flu.py index bc0723bf3..7ec50a6d2 100644 --- a/tests/server/endpoints/test_nidss_flu.py +++ b/tests/server/endpoints/test_nidss_flu.py @@ -1,5 +1,3 @@ -"""Unit tests for granular sensor authentication in api.php.""" - # standard library import unittest import base64 diff --git a/tests/server/test_exceptions.py b/tests/server/test_exceptions.py index 94cdc34f1..b07fe3ac7 100644 --- a/tests/server/test_exceptions.py +++ b/tests/server/test_exceptions.py @@ -1,5 +1,3 @@ -"""Unit tests for granular sensor authentication in api.php.""" - # standard library import unittest diff --git a/tests/server/test_query.py b/tests/server/test_query.py index ec07d3e8b..95b21a55a 100644 --- a/tests/server/test_query.py +++ b/tests/server/test_query.py @@ -1,5 +1,3 @@ -"""Unit tests for granular sensor authentication in api.php.""" - # standard library import unittest import base64 diff --git a/tests/server/test_security.py b/tests/server/test_security.py index e209d9342..eb8e32700 100644 --- a/tests/server/test_security.py +++ b/tests/server/test_security.py @@ -1,4 +1,4 @@ -"""Unit tests for granular sensor authentication in api.php.""" +"""Unit tests for granular sensor authentication.""" # standard library import unittest diff --git a/tests/server/test_validate.py b/tests/server/test_validate.py index 27ce28672..f06e9e997 100644 --- a/tests/server/test_validate.py +++ b/tests/server/test_validate.py @@ -1,5 +1,3 @@ -"""Unit tests for granular sensor authentication in api.php.""" - # standard library import unittest