From 685348e3617f7f56837165527f1f9da4453f82d5 Mon Sep 17 00:00:00 2001 From: Addison Hu Date: Tue, 2 Jun 2020 18:34:02 -0400 Subject: [PATCH 01/44] revert 7day smooth to wip_ --- jhu/delphi_jhu/run.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index cfb738f21..fece9f105 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -44,8 +44,8 @@ "cumulative_prop": ("cumulative_prop", False), } SMOOTHERS_MAP = { - "unsmoothed": (identity, ''), - "seven_day_average": (seven_day_moving_average, '7day_avg_'), + "unsmoothed": (identity, '', False), + "seven_day_average": (seven_day_moving_average, '7day_avg_', True), } GEO_RESOLUTIONS = [ "county", @@ -84,7 +84,7 @@ def run_module(): # Drop early entries where data insufficient for smoothing df = df.loc[~df["val"].isnull(), :] sensor_name = SENSOR_NAME_MAP[sensor][0] - if SENSOR_NAME_MAP[sensor][1]: + if (SENSOR_NAME_MAP[sensor][1] or SMOOTHERS_MAP[smoother][2]): metric = f"wip_{metric}" sensor_name = SMOOTHERS_MAP[smoother][1] + sensor_name create_export_csv( From 44febee95e8599c817ec88135dbeb57a46ba17a0 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Mon, 8 Jun 2020 15:33:59 -0400 Subject: [PATCH 02/44] update code for unassigned cases/deaths --- jhu/delphi_jhu/geo.py | 81 ++++++++++++++++++++++++++++++++++++++++-- jhu/delphi_jhu/pull.py | 8 +++-- jhu/delphi_jhu/run.py | 2 +- 3 files changed, 85 insertions(+), 6 deletions(-) diff --git a/jhu/delphi_jhu/geo.py b/jhu/delphi_jhu/geo.py index 4e305917b..84629ec09 100644 --- a/jhu/delphi_jhu/geo.py +++ b/jhu/delphi_jhu/geo.py @@ -89,6 +89,62 @@ FIPS_TO_STATE = {v: k.lower() for k, v in STATE_TO_FIPS.items()} +# Fake fips to States + +FAKE_FIPS_TO_STATES = { + "90001":"al", + "90002":"ak", + "90004":"az", + "90005":"ar", + "90006":"ca", + "90008":"co", + "90009":"ct", + "90010":"de", + "90011":"dc", + "90012":"fl", + "90013":"ga", + "90015":"hi", + "90016":"id", + "90017":"il", + "90018":"in", + "90019":"ia", + "90020":"ks", + "90021":"ky", + "90022":"la", + "90023":"me", + "90024":"md", + "90025":"ma", + "90026":"mi", + "90027":"mn", + "90028":"ms", + "90029":"mo", + "90030":"mt", + "90031":"ne", + "90032":"nv", + "90033":"nh", + "90034":"nj", + "90035":"nm", + "90036":"ny", + "90037":"nc", + "90038":"nd", + "90039":"oh", + "90040":"ok", + "90041":"or", + "90042":"pa", + "90044":"ri", + "90045":"sc", + "90046":"sd", + "90047":"tn", + "90048":"tx", + "90049":"ut", + "90050":"vt", + "90051":"va", + "90053":"wa", + "90054":"wv", + "90055":"wi", + "90056":"wy" +} + def fips_to_state(fips: str) -> str: """Wrapper that handles exceptions to the FIPS scheme in the JHU data. @@ -118,7 +174,11 @@ def fips_to_state(fips: str) -> str: return FIPS_TO_STATE["25"] # Dukes & Nantucket -> Massachusetts if fips == "70003": return FIPS_TO_STATE["29"] # Kansas City -> Missouri - return FIPS_TO_STATE[fips[:2]] + # Fake fips -> states + if fips[:2] == '90': + return FAKE_FIPS_TO_STATES[fips] + else: + return FIPS_TO_STATE[fips[:2]] def disburse(df: pd.DataFrame, pooled_fips: str, fips_list: list): @@ -148,7 +208,7 @@ def disburse(df: pd.DataFrame, pooled_fips: str, fips_list: list): return df -def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame): +def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): """ Maps a DataFrame df, which contains data at the county resolution, and aggregate it to the geographic resolution geo_res. @@ -169,15 +229,26 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame): Columns: geo_id, timestamp, ... """ VALID_GEO_RES = ("county", "state", "msa", "hrr") + #It is not clear to calculate the proportion for unassigned cases/deaths + PROP_SENSORS = ("incidence", "cumulative_prop") if geo_res not in VALID_GEO_RES: raise ValueError(f"geo_res must be one of {VALID_GEO_RES}") - df = df.copy() + + df_mega = df[df['fips'].astype(int) >= 90001].copy() + df_mega['geo_id'] = df_mega['fips'].apply(fips_to_state) + + df = df[df['fips'].astype(int) < 90001].copy() + if geo_res == "county": df["geo_id"] = df["fips"] + if sensor not in PROP_SENSORS: + df = df.append(df_mega) elif geo_res == "state": # Grab first two digits of fips # Map state fips to us postal code df["geo_id"] = df["fips"].apply(fips_to_state) + # Add unassigned cases/deaths + df = df.append(df_mega) elif geo_res in ("msa", "hrr"): # Disburse Dukes & Nantucket to individual counties df = disburse(df, DN_FIPS, DN_COUNTY_FIPS) @@ -200,8 +271,12 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame): merged["new_counts"] = merged["new_counts"] * merged["pop_prop"] merged["population"] = merged["population"] * merged["pop_prop"] df = merged.drop(["zip", "pop_prop", "hrrnum", "cbsa_id"], axis=1) + if sensor not in PROP_SENSORS: + df = df.append(df_mega) df = df.drop("fips", axis=1) df = df.groupby(["geo_id", "timestamp"]).sum().reset_index() + + # Value would be negative for megacounties , which would not be considered in the main function df["incidence"] = df["new_counts"] / df["population"] * INCIDENCE_BASE df["cumulative_prop"] = df["cumulative_counts"] / df["population"] * INCIDENCE_BASE return df diff --git a/jhu/delphi_jhu/pull.py b/jhu/delphi_jhu/pull.py index 1049d5e0a..a60487ae8 100644 --- a/jhu/delphi_jhu/pull.py +++ b/jhu/delphi_jhu/pull.py @@ -62,7 +62,7 @@ def pull_jhu_data(base_url: str, metric: str, pop_df: pd.DataFrame) -> pd.DataFr MIN_FIPS = 1000 MAX_FIPS = 57000 EXTRA_FIPS = ( - 72, # Puerto Rico (provided as the entire state) + 72, # Puerto Rico (provided as the entire state) 70002, # Kansas City, MO 70003, # Dukes and Nantucket Counties, MA ) @@ -79,9 +79,13 @@ def pull_jhu_data(base_url: str, metric: str, pop_df: pd.DataFrame) -> pd.DataFr & (df["FIPS"] < MAX_FIPS) ) # "Uncategorized", etc. | df["FIPS"].isin(EXTRA_FIPS) + # Get Fake FIPS for unassigned cases + | np.logical_and(df['FIPS'] >= 90001, + df['FIPS'] <= 90056) ] # Merge in population LOWERCASE, consistent across confirmed and deaths - df = pd.merge(df, pop_df, on="FIPS") + # set population as -1 for fake fips + df = pd.merge(df, pop_df, on="FIPS", how = 'left').fillna(-1) # Manual correction for PR df.loc[df["FIPS"] == 72, "FIPS"] = 72000 diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index cfb738f21..a21c5bb54 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -77,7 +77,7 @@ def run_module(): print(geo_res, metric, sensor, smoother) df = dfs[metric] # Aggregate to appropriate geographic resolution - df = geo_map(df, geo_res, map_df) + df = geo_map(df, geo_res, map_df, sensor) df["val"] = SMOOTHERS_MAP[smoother][0](df[sensor].values) df["se"] = np.nan df["sample_size"] = np.nan From 849a32ec63ca9eee067104c664d4d5bc7bd92a01 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Mon, 8 Jun 2020 18:41:14 -0400 Subject: [PATCH 03/44] update the dict for fake fips --- jhu/delphi_jhu/geo.py | 110 ++++++++++++++++++++++-------------------- 1 file changed, 58 insertions(+), 52 deletions(-) diff --git a/jhu/delphi_jhu/geo.py b/jhu/delphi_jhu/geo.py index 84629ec09..0ad797692 100644 --- a/jhu/delphi_jhu/geo.py +++ b/jhu/delphi_jhu/geo.py @@ -91,60 +91,62 @@ # Fake fips to States -FAKE_FIPS_TO_STATES = { - "90001":"al", - "90002":"ak", - "90004":"az", - "90005":"ar", - "90006":"ca", - "90008":"co", - "90009":"ct", - "90010":"de", - "90011":"dc", - "90012":"fl", - "90013":"ga", - "90015":"hi", - "90016":"id", - "90017":"il", - "90018":"in", - "90019":"ia", - "90020":"ks", - "90021":"ky", - "90022":"la", - "90023":"me", - "90024":"md", - "90025":"ma", - "90026":"mi", - "90027":"mn", - "90028":"ms", - "90029":"mo", - "90030":"mt", - "90031":"ne", - "90032":"nv", - "90033":"nh", - "90034":"nj", - "90035":"nm", - "90036":"ny", - "90037":"nc", - "90038":"nd", - "90039":"oh", - "90040":"ok", - "90041":"or", - "90042":"pa", - "90044":"ri", - "90045":"sc", - "90046":"sd", - "90047":"tn", - "90048":"tx", - "90049":"ut", - "90050":"vt", - "90051":"va", - "90053":"wa", - "90054":"wv", - "90055":"wi", - "90056":"wy" +STATES_TO_JHU_FIPS_FOR_UNASSIGNED = { + "AL":"01", + "AK":"02", + "AZ":"04", + "AR":"05", + "CA":"06", + "CO":"08", + "CT":"09", + "DE":"10", + "DC":"11", + "FL":"12", + "GA":"13", + "HI":"15", + "ID":"16", + "IL":"17", + "IN":"18", + "IA":"19", + "KS":"20", + "KY":"21", + "LA":"22", + "ME":"23", + "MD":"24", + "MA":"25", + "MI":"26", + "MN":"27", + "MS":"28", + "MO":"29", + "MT":"30", + "NE":"31", + "NV":"32", + "NH":"33", + "NJ":"34", + "NM":"35", + "NY":"36", + "NC":"37", + "ND":"38", + "OH":"39", + "OK":"40", + "OR":"41", + "PA":"42", + "RI":"44", + "SC":"45", + "SD":"46", + "TN":"47", + "TX":"48", + "UT":"49", + "VT":"50", + "VA":"51", + "WA":"53", + "WV":"54", + "WI":"55", + "WY":"56" } +FAKE_FIPS_TO_STATES = {f'900{v}' : k.lower() for k, v in STATES_TO_JHU_FIPS_FOR_UNASSIGNED.items()} + def fips_to_state(fips: str) -> str: """Wrapper that handles exceptions to the FIPS scheme in the JHU data. @@ -222,6 +224,10 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): ('county', 'state', 'msa', 'hrr'). map_df: pd.DataFrame Loaded from static file "fips_prop_pop.csv". + sensor: str + sensor type. Valid options: + ("new_counts", "cumulative_counts", + "incidence", "cumulative_prop") Returns ------- From f1f5cddef7bf210a618499b88b14ad8e45a85311 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Mon, 8 Jun 2020 18:47:34 -0400 Subject: [PATCH 04/44] Set population for fake fips as NAN --- jhu/delphi_jhu/pull.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jhu/delphi_jhu/pull.py b/jhu/delphi_jhu/pull.py index a60487ae8..3be512559 100644 --- a/jhu/delphi_jhu/pull.py +++ b/jhu/delphi_jhu/pull.py @@ -84,8 +84,8 @@ def pull_jhu_data(base_url: str, metric: str, pop_df: pd.DataFrame) -> pd.DataFr df['FIPS'] <= 90056) ] # Merge in population LOWERCASE, consistent across confirmed and deaths - # set population as -1 for fake fips - df = pd.merge(df, pop_df, on="FIPS", how = 'left').fillna(-1) + # Set population as NAN for fake fips + df = pd.merge(df, pop_df, on="FIPS", how = 'left') # Manual correction for PR df.loc[df["FIPS"] == 72, "FIPS"] = 72000 From 84bbfc6ec10be9401f8bb36c8c7318a85c27c7b2 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Mon, 8 Jun 2020 19:24:28 -0400 Subject: [PATCH 05/44] update geo_id for megacounty --- jhu/delphi_jhu/geo.py | 67 ++++--------------------------------------- 1 file changed, 5 insertions(+), 62 deletions(-) diff --git a/jhu/delphi_jhu/geo.py b/jhu/delphi_jhu/geo.py index 0ad797692..dba93c371 100644 --- a/jhu/delphi_jhu/geo.py +++ b/jhu/delphi_jhu/geo.py @@ -91,61 +91,7 @@ # Fake fips to States -STATES_TO_JHU_FIPS_FOR_UNASSIGNED = { - "AL":"01", - "AK":"02", - "AZ":"04", - "AR":"05", - "CA":"06", - "CO":"08", - "CT":"09", - "DE":"10", - "DC":"11", - "FL":"12", - "GA":"13", - "HI":"15", - "ID":"16", - "IL":"17", - "IN":"18", - "IA":"19", - "KS":"20", - "KY":"21", - "LA":"22", - "ME":"23", - "MD":"24", - "MA":"25", - "MI":"26", - "MN":"27", - "MS":"28", - "MO":"29", - "MT":"30", - "NE":"31", - "NV":"32", - "NH":"33", - "NJ":"34", - "NM":"35", - "NY":"36", - "NC":"37", - "ND":"38", - "OH":"39", - "OK":"40", - "OR":"41", - "PA":"42", - "RI":"44", - "SC":"45", - "SD":"46", - "TN":"47", - "TX":"48", - "UT":"49", - "VT":"50", - "VA":"51", - "WA":"53", - "WV":"54", - "WI":"55", - "WY":"56" -} - -FAKE_FIPS_TO_STATES = {f'900{v}' : k.lower() for k, v in STATES_TO_JHU_FIPS_FOR_UNASSIGNED.items()} +JHU_FAKE_FIPS_TO_MEGA_FIPS = {f'900{x}' : f'{x}000' for x in STATE_TO_FIPS.values()} def fips_to_state(fips: str) -> str: @@ -176,11 +122,7 @@ def fips_to_state(fips: str) -> str: return FIPS_TO_STATE["25"] # Dukes & Nantucket -> Massachusetts if fips == "70003": return FIPS_TO_STATE["29"] # Kansas City -> Missouri - # Fake fips -> states - if fips[:2] == '90': - return FAKE_FIPS_TO_STATES[fips] - else: - return FIPS_TO_STATE[fips[:2]] + return FIPS_TO_STATE[fips[:2]] def disburse(df: pd.DataFrame, pooled_fips: str, fips_list: list): @@ -241,7 +183,7 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): raise ValueError(f"geo_res must be one of {VALID_GEO_RES}") df_mega = df[df['fips'].astype(int) >= 90001].copy() - df_mega['geo_id'] = df_mega['fips'].apply(fips_to_state) + df_mega['geo_id'] = df_mega['fips'].apply(lambda x: JHU_FAKE_FIPS_TO_MEGA_FIPS[x]) df = df[df['fips'].astype(int) < 90001].copy() @@ -252,9 +194,10 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): elif geo_res == "state": # Grab first two digits of fips # Map state fips to us postal code - df["geo_id"] = df["fips"].apply(fips_to_state) + df["geo_id"] = df["fips"] # Add unassigned cases/deaths df = df.append(df_mega) + df["geo_id"] = df["geo_id"].apply(fips_to_state) elif geo_res in ("msa", "hrr"): # Disburse Dukes & Nantucket to individual counties df = disburse(df, DN_FIPS, DN_COUNTY_FIPS) From 339eac5dc747ce9215457bd6abb8bc6414dc5fe4 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Tue, 9 Jun 2020 09:57:59 -0400 Subject: [PATCH 06/44] update cache --- google_health/cache/Data_500_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_501_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_502_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_503_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_504_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_505_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_506_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_507_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_508_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_509_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_510_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_511_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_512_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_513_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_514_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_515_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_516_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_517_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_518_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_519_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_520_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_521_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_522_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_523_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_524_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_525_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_526_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_527_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_528_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_529_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_530_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_531_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_532_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_533_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_534_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_535_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_536_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_537_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_538_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_539_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_540_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_541_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_542_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_543_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_544_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_545_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_546_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_547_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_548_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_549_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_550_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_551_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_552_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_553_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_554_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_555_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_556_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_557_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_558_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_559_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_560_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_561_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_563_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_564_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_565_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_566_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_567_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_569_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_570_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_571_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_573_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_574_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_575_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_576_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_577_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_581_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_582_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_583_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_584_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_588_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_592_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_596_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_597_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_598_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_600_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_602_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_603_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_604_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_605_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_606_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_609_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_610_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_611_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_612_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_613_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_616_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_617_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_618_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_619_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_622_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_623_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_624_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_625_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_626_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_627_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_628_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_630_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_631_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_632_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_633_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_634_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_635_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_636_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_637_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_638_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_639_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_640_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_641_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_642_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_643_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_644_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_647_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_648_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_649_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_650_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_651_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_652_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_656_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_657_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_658_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_659_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_661_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_662_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_669_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_670_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_671_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_673_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_675_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_676_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_678_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_679_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_682_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_686_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_687_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_691_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_692_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_693_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_698_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_702_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_705_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_709_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_710_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_711_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_716_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_717_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_718_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_722_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_724_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_725_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_734_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_736_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_737_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_740_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_743_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_744_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_745_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_746_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_747_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_749_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_751_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_752_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_753_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_754_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_755_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_756_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_757_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_758_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_759_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_760_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_762_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_764_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_765_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_766_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_767_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_770_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_771_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_773_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_789_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_790_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_798_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_800_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_801_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_802_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_803_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_804_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_807_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_810_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_811_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_813_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_819_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_820_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_821_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_825_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_828_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_839_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_855_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_862_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_866_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_868_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_881_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_AK_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_AL_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_AR_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_AZ_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_CA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_CO_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_CT_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_DC_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_DE_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_FL_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_GA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_HI_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_IA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_ID_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_IL_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_IN_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_KS_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_KY_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_LA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MD_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_ME_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MI_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MN_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MO_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MS_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_MT_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NC_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_ND_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NE_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NH_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NJ_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NM_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NV_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_NY_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_OH_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_OK_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_OR_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_PA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_RI_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_SC_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_SD_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_TN_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_TX_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_UT_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_VA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_VT_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_WA_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_WI_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_WV_anosmia_ms.csv | 21 +++++++++++++++++++++ google_health/cache/Data_WY_anosmia_ms.csv | 21 +++++++++++++++++++++ 261 files changed, 5481 insertions(+) diff --git a/google_health/cache/Data_500_anosmia_ms.csv b/google_health/cache/Data_500_anosmia_ms.csv index 48ee60b55..0b129fd5e 100644 --- a/google_health/cache/Data_500_anosmia_ms.csv +++ b/google_health/cache/Data_500_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 500,2020-05-13,0.00000000 500,2020-05-14,0.00000000 500,2020-05-15,0.00000000 +500,2020-05-16,0.00000000 +500,2020-05-17,0.00000000 +500,2020-05-18,0.00000000 +500,2020-05-19,0.00000000 +500,2020-05-20,0.00000000 +500,2020-05-21,0.00000000 +500,2020-05-22,0.00000000 +500,2020-05-23,0.00000000 +500,2020-05-24,2200.70422535 +500,2020-05-25,1973.16495659 +500,2020-05-26,0.00000000 +500,2020-05-27,0.00000000 +500,2020-05-28,0.00000000 +500,2020-05-29,0.00000000 +500,2020-05-30,0.00000000 +500,2020-05-31,0.00000000 +500,2020-06-01,0.00000000 +500,2020-06-02,0.00000000 +500,2020-06-03,0.00000000 +500,2020-06-04,0.00000000 +500,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_501_anosmia_ms.csv b/google_health/cache/Data_501_anosmia_ms.csv index 46ef7e323..4f5b0baf7 100644 --- a/google_health/cache/Data_501_anosmia_ms.csv +++ b/google_health/cache/Data_501_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 501,2020-05-13,392.32625361 501,2020-05-14,324.14725935 501,2020-05-15,247.25216534 +501,2020-05-16,282.22614066 +501,2020-05-17,289.84124969 +501,2020-05-18,390.53549826 +501,2020-05-19,540.29622067 +501,2020-05-20,241.80713566 +501,2020-05-21,376.88500026 +501,2020-05-22,356.14953551 +501,2020-05-23,320.52164769 +501,2020-05-24,256.10714479 +501,2020-05-25,328.92618894 +501,2020-05-26,142.09376105 +501,2020-05-27,285.08656631 +501,2020-05-28,145.95659513 +501,2020-05-29,203.30545511 +501,2020-05-30,249.98138165 +501,2020-05-31,142.33883376 +501,2020-06-01,134.02327689 +501,2020-06-02,328.02073255 +501,2020-06-03,268.44266113 +501,2020-06-04,403.02506167 +501,2020-06-05,203.98113312 diff --git a/google_health/cache/Data_502_anosmia_ms.csv b/google_health/cache/Data_502_anosmia_ms.csv index 11c717862..82148eff7 100644 --- a/google_health/cache/Data_502_anosmia_ms.csv +++ b/google_health/cache/Data_502_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 502,2020-05-13,0.00000000 502,2020-05-14,0.00000000 502,2020-05-15,0.00000000 +502,2020-05-16,0.00000000 +502,2020-05-17,0.00000000 +502,2020-05-18,0.00000000 +502,2020-05-19,0.00000000 +502,2020-05-20,0.00000000 +502,2020-05-21,0.00000000 +502,2020-05-22,0.00000000 +502,2020-05-23,0.00000000 +502,2020-05-24,0.00000000 +502,2020-05-25,0.00000000 +502,2020-05-26,0.00000000 +502,2020-05-27,0.00000000 +502,2020-05-28,0.00000000 +502,2020-05-29,0.00000000 +502,2020-05-30,0.00000000 +502,2020-05-31,0.00000000 +502,2020-06-01,0.00000000 +502,2020-06-02,0.00000000 +502,2020-06-03,0.00000000 +502,2020-06-04,0.00000000 +502,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_503_anosmia_ms.csv b/google_health/cache/Data_503_anosmia_ms.csv index 6ed741a3f..c9b29d59f 100644 --- a/google_health/cache/Data_503_anosmia_ms.csv +++ b/google_health/cache/Data_503_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 503,2020-05-13,0.00000000 503,2020-05-14,0.00000000 503,2020-05-15,0.00000000 +503,2020-05-16,0.00000000 +503,2020-05-17,0.00000000 +503,2020-05-18,0.00000000 +503,2020-05-19,0.00000000 +503,2020-05-20,3672.42012486 +503,2020-05-21,0.00000000 +503,2020-05-22,0.00000000 +503,2020-05-23,0.00000000 +503,2020-05-24,0.00000000 +503,2020-05-25,0.00000000 +503,2020-05-26,0.00000000 +503,2020-05-27,0.00000000 +503,2020-05-28,0.00000000 +503,2020-05-29,0.00000000 +503,2020-05-30,0.00000000 +503,2020-05-31,0.00000000 +503,2020-06-01,0.00000000 +503,2020-06-02,0.00000000 +503,2020-06-03,0.00000000 +503,2020-06-04,0.00000000 +503,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_504_anosmia_ms.csv b/google_health/cache/Data_504_anosmia_ms.csv index b4a5a4e84..43776f711 100644 --- a/google_health/cache/Data_504_anosmia_ms.csv +++ b/google_health/cache/Data_504_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 504,2020-05-13,557.11659680 504,2020-05-14,363.57013223 504,2020-05-15,847.97233675 +504,2020-05-16,444.98346642 +504,2020-05-17,534.41672775 +504,2020-05-18,545.05004653 +504,2020-05-19,183.43119011 +504,2020-05-20,554.50828444 +504,2020-05-21,191.32736853 +504,2020-05-22,184.24842629 +504,2020-05-23,622.69156751 +504,2020-05-24,1108.10718092 +504,2020-05-25,663.20789572 +504,2020-05-26,772.27266461 +504,2020-05-27,190.29199506 +504,2020-05-28,363.83261971 +504,2020-05-29,0.00000000 +504,2020-05-30,0.00000000 +504,2020-05-31,219.38533138 +504,2020-06-01,921.24370291 +504,2020-06-02,559.06455322 +504,2020-06-03,178.48945958 +504,2020-06-04,568.41047377 +504,2020-06-05,184.42864118 diff --git a/google_health/cache/Data_505_anosmia_ms.csv b/google_health/cache/Data_505_anosmia_ms.csv index a46d59bb1..b12da6453 100644 --- a/google_health/cache/Data_505_anosmia_ms.csv +++ b/google_health/cache/Data_505_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 505,2020-05-13,1033.24114744 505,2020-05-14,966.23647884 505,2020-05-15,671.32931951 +505,2020-05-16,0.00000000 +505,2020-05-17,0.00000000 +505,2020-05-18,1081.27786689 +505,2020-05-19,336.54208784 +505,2020-05-20,1359.58768990 +505,2020-05-21,713.28805930 +505,2020-05-22,0.00000000 +505,2020-05-23,1253.98677913 +505,2020-05-24,437.29613611 +505,2020-05-25,0.00000000 +505,2020-05-26,0.00000000 +505,2020-05-27,330.85299711 +505,2020-05-28,0.00000000 +505,2020-05-29,335.79555758 +505,2020-05-30,0.00000000 +505,2020-05-31,401.38591473 +505,2020-06-01,674.71132597 +505,2020-06-02,0.00000000 +505,2020-06-03,320.48723068 +505,2020-06-04,0.00000000 +505,2020-06-05,326.18573894 diff --git a/google_health/cache/Data_506_anosmia_ms.csv b/google_health/cache/Data_506_anosmia_ms.csv index 7b561dba7..90a9904d5 100644 --- a/google_health/cache/Data_506_anosmia_ms.csv +++ b/google_health/cache/Data_506_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 506,2020-05-13,224.16752446 506,2020-05-14,690.35335010 506,2020-05-15,677.35234002 +506,2020-05-16,0.00000000 +506,2020-05-17,537.89871869 +506,2020-05-18,502.89870470 +506,2020-05-19,1105.62934682 +506,2020-05-20,230.84100350 +506,2020-05-21,942.86292166 +506,2020-05-22,490.42349066 +506,2020-05-23,269.12959025 +506,2020-05-24,564.57111674 +506,2020-05-25,1049.97217083 +506,2020-05-26,0.00000000 +506,2020-05-27,683.47100277 +506,2020-05-28,677.34375290 +506,2020-05-29,0.00000000 +506,2020-05-30,0.00000000 +506,2020-05-31,272.29992876 +506,2020-06-01,675.67841894 +506,2020-06-02,455.37555267 +506,2020-06-03,429.08720078 +506,2020-06-04,769.12885310 +506,2020-06-05,668.76250905 diff --git a/google_health/cache/Data_507_anosmia_ms.csv b/google_health/cache/Data_507_anosmia_ms.csv index cfaf68d44..2f011aeb6 100644 --- a/google_health/cache/Data_507_anosmia_ms.csv +++ b/google_health/cache/Data_507_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 507,2020-05-13,0.00000000 507,2020-05-14,0.00000000 507,2020-05-15,0.00000000 +507,2020-05-16,2329.37339856 +507,2020-05-17,0.00000000 +507,2020-05-18,2010.05025126 +507,2020-05-19,0.00000000 +507,2020-05-20,0.00000000 +507,2020-05-21,0.00000000 +507,2020-05-22,2102.16523019 +507,2020-05-23,0.00000000 +507,2020-05-24,0.00000000 +507,2020-05-25,2227.66763199 +507,2020-05-26,0.00000000 +507,2020-05-27,0.00000000 +507,2020-05-28,0.00000000 +507,2020-05-29,0.00000000 +507,2020-05-30,0.00000000 +507,2020-05-31,0.00000000 +507,2020-06-01,0.00000000 +507,2020-06-02,0.00000000 +507,2020-06-03,0.00000000 +507,2020-06-04,0.00000000 +507,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_508_anosmia_ms.csv b/google_health/cache/Data_508_anosmia_ms.csv index bd61a9191..115be5e73 100644 --- a/google_health/cache/Data_508_anosmia_ms.csv +++ b/google_health/cache/Data_508_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 508,2020-05-13,0.00000000 508,2020-05-14,0.00000000 508,2020-05-15,0.00000000 +508,2020-05-16,0.00000000 +508,2020-05-17,0.00000000 +508,2020-05-18,1926.35941942 +508,2020-05-19,621.38222934 +508,2020-05-20,0.00000000 +508,2020-05-21,0.00000000 +508,2020-05-22,652.92892362 +508,2020-05-23,806.94053088 +508,2020-05-24,0.00000000 +508,2020-05-25,1602.45687507 +508,2020-05-26,0.00000000 +508,2020-05-27,650.70612411 +508,2020-05-28,0.00000000 +508,2020-05-29,0.00000000 +508,2020-05-30,757.45450997 +508,2020-05-31,0.00000000 +508,2020-06-01,1330.88994440 +508,2020-06-02,0.00000000 +508,2020-06-03,612.60192703 +508,2020-06-04,617.44562715 +508,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_509_anosmia_ms.csv b/google_health/cache/Data_509_anosmia_ms.csv index 6a05bbf27..00fbea85b 100644 --- a/google_health/cache/Data_509_anosmia_ms.csv +++ b/google_health/cache/Data_509_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 509,2020-05-13,0.00000000 509,2020-05-14,0.00000000 509,2020-05-15,0.00000000 +509,2020-05-16,0.00000000 +509,2020-05-17,0.00000000 +509,2020-05-18,5783.96860533 +509,2020-05-19,0.00000000 +509,2020-05-20,0.00000000 +509,2020-05-21,0.00000000 +509,2020-05-22,3252.03252033 +509,2020-05-23,0.00000000 +509,2020-05-24,0.00000000 +509,2020-05-25,0.00000000 +509,2020-05-26,0.00000000 +509,2020-05-27,0.00000000 +509,2020-05-28,0.00000000 +509,2020-05-29,0.00000000 +509,2020-05-30,0.00000000 +509,2020-05-31,0.00000000 +509,2020-06-01,3394.43312967 +509,2020-06-02,0.00000000 +509,2020-06-03,0.00000000 +509,2020-06-04,0.00000000 +509,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_510_anosmia_ms.csv b/google_health/cache/Data_510_anosmia_ms.csv index 05114f780..f693fe3e3 100644 --- a/google_health/cache/Data_510_anosmia_ms.csv +++ b/google_health/cache/Data_510_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 510,2020-05-13,0.00000000 510,2020-05-14,413.01426379 510,2020-05-15,1253.64272964 +510,2020-05-16,0.00000000 +510,2020-05-17,1523.97865145 +510,2020-05-18,1283.33674933 +510,2020-05-19,0.00000000 +510,2020-05-20,0.00000000 +510,2020-05-21,473.06015464 +510,2020-05-22,909.11066682 +510,2020-05-23,0.00000000 +510,2020-05-24,2253.58845766 +510,2020-05-25,0.00000000 +510,2020-05-26,1219.69895589 +510,2020-05-27,0.00000000 +510,2020-05-28,1241.83651857 +510,2020-05-29,461.58151086 +510,2020-05-30,1091.95517512 +510,2020-05-31,547.97312154 +510,2020-06-01,0.00000000 +510,2020-06-02,0.00000000 +510,2020-06-03,0.00000000 +510,2020-06-04,0.00000000 +510,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_511_anosmia_ms.csv b/google_health/cache/Data_511_anosmia_ms.csv index 4a64c594c..248f454b5 100644 --- a/google_health/cache/Data_511_anosmia_ms.csv +++ b/google_health/cache/Data_511_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 511,2020-05-13,583.13736147 511,2020-05-14,192.40387059 511,2020-05-15,1588.86531513 +511,2020-05-16,0.00000000 +511,2020-05-17,473.31623810 +511,2020-05-18,864.06666640 +511,2020-05-19,0.00000000 +511,2020-05-20,581.07640622 +511,2020-05-21,599.86759204 +511,2020-05-22,499.89624366 +511,2020-05-23,0.00000000 +511,2020-05-24,490.34399874 +511,2020-05-25,2879.01618651 +511,2020-05-26,989.87515426 +511,2020-05-27,384.72657197 +511,2020-05-28,570.59347775 +511,2020-05-29,607.56038687 +511,2020-05-30,715.99513220 +511,2020-05-31,493.77148344 +511,2020-06-01,804.22369591 +511,2020-06-02,1190.95407243 +511,2020-06-03,853.37872746 +511,2020-06-04,365.94774005 +511,2020-06-05,1312.45218728 diff --git a/google_health/cache/Data_512_anosmia_ms.csv b/google_health/cache/Data_512_anosmia_ms.csv index a317a4b91..6ebf4a74a 100644 --- a/google_health/cache/Data_512_anosmia_ms.csv +++ b/google_health/cache/Data_512_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 512,2020-05-13,0.00000000 512,2020-05-14,1655.34050106 512,2020-05-15,0.00000000 +512,2020-05-16,0.00000000 +512,2020-05-17,0.00000000 +512,2020-05-18,549.01126112 +512,2020-05-19,1657.39505655 +512,2020-05-20,0.00000000 +512,2020-05-21,1149.69567940 +512,2020-05-22,1130.38809586 +512,2020-05-23,672.44162595 +512,2020-05-24,1361.22745237 +512,2020-05-25,675.13927753 +512,2020-05-26,0.00000000 +512,2020-05-27,1121.56898009 +512,2020-05-28,556.11647448 +512,2020-05-29,0.00000000 +512,2020-05-30,0.00000000 +512,2020-05-31,2023.03519308 +512,2020-06-01,569.46171438 +512,2020-06-02,0.00000000 +512,2020-06-03,0.00000000 +512,2020-06-04,1075.10340966 +512,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_513_anosmia_ms.csv b/google_health/cache/Data_513_anosmia_ms.csv index ef456b77a..059c118fc 100644 --- a/google_health/cache/Data_513_anosmia_ms.csv +++ b/google_health/cache/Data_513_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 513,2020-05-13,0.00000000 513,2020-05-14,0.00000000 513,2020-05-15,0.00000000 +513,2020-05-16,0.00000000 +513,2020-05-17,3988.03589232 +513,2020-05-18,0.00000000 +513,2020-05-19,0.00000000 +513,2020-05-20,0.00000000 +513,2020-05-21,0.00000000 +513,2020-05-22,0.00000000 +513,2020-05-23,0.00000000 +513,2020-05-24,0.00000000 +513,2020-05-25,0.00000000 +513,2020-05-26,0.00000000 +513,2020-05-27,0.00000000 +513,2020-05-28,0.00000000 +513,2020-05-29,1938.36014732 +513,2020-05-30,0.00000000 +513,2020-05-31,0.00000000 +513,2020-06-01,0.00000000 +513,2020-06-02,0.00000000 +513,2020-06-03,0.00000000 +513,2020-06-04,0.00000000 +513,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_514_anosmia_ms.csv b/google_health/cache/Data_514_anosmia_ms.csv index 1fad7c535..95941d5cb 100644 --- a/google_health/cache/Data_514_anosmia_ms.csv +++ b/google_health/cache/Data_514_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 514,2020-05-13,0.00000000 514,2020-05-14,1061.86320602 514,2020-05-15,0.00000000 +514,2020-05-16,0.00000000 +514,2020-05-17,2591.49391998 +514,2020-05-18,3252.61045920 +514,2020-05-19,0.00000000 +514,2020-05-20,0.00000000 +514,2020-05-21,0.00000000 +514,2020-05-22,0.00000000 +514,2020-05-23,2683.73443756 +514,2020-05-24,4290.57634500 +514,2020-05-25,5620.80113788 +514,2020-05-26,2375.19772905 +514,2020-05-27,0.00000000 +514,2020-05-28,0.00000000 +514,2020-05-29,0.00000000 +514,2020-05-30,0.00000000 +514,2020-05-31,2645.20017992 +514,2020-06-01,0.00000000 +514,2020-06-02,0.00000000 +514,2020-06-03,1058.50845924 +514,2020-06-04,0.00000000 +514,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_515_anosmia_ms.csv b/google_health/cache/Data_515_anosmia_ms.csv index 471d2b08e..80289e6ea 100644 --- a/google_health/cache/Data_515_anosmia_ms.csv +++ b/google_health/cache/Data_515_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 515,2020-05-13,0.00000000 515,2020-05-14,0.00000000 515,2020-05-15,0.00000000 +515,2020-05-16,1598.69893690 +515,2020-05-17,0.00000000 +515,2020-05-18,2043.67163979 +515,2020-05-19,0.00000000 +515,2020-05-20,0.00000000 +515,2020-05-21,1428.16031274 +515,2020-05-22,761.06315981 +515,2020-05-23,0.00000000 +515,2020-05-24,0.00000000 +515,2020-05-25,0.00000000 +515,2020-05-26,740.32222387 +515,2020-05-27,0.00000000 +515,2020-05-28,0.00000000 +515,2020-05-29,2228.01661069 +515,2020-05-30,0.00000000 +515,2020-05-31,0.00000000 +515,2020-06-01,0.00000000 +515,2020-06-02,0.00000000 +515,2020-06-03,0.00000000 +515,2020-06-04,697.65100852 +515,2020-06-05,1463.99546589 diff --git a/google_health/cache/Data_516_anosmia_ms.csv b/google_health/cache/Data_516_anosmia_ms.csv index b8cc024e4..0e3008a44 100644 --- a/google_health/cache/Data_516_anosmia_ms.csv +++ b/google_health/cache/Data_516_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 516,2020-05-13,0.00000000 516,2020-05-14,0.00000000 516,2020-05-15,0.00000000 +516,2020-05-16,0.00000000 +516,2020-05-17,0.00000000 +516,2020-05-18,0.00000000 +516,2020-05-19,0.00000000 +516,2020-05-20,0.00000000 +516,2020-05-21,0.00000000 +516,2020-05-22,0.00000000 +516,2020-05-23,0.00000000 +516,2020-05-24,0.00000000 +516,2020-05-25,0.00000000 +516,2020-05-26,0.00000000 +516,2020-05-27,0.00000000 +516,2020-05-28,0.00000000 +516,2020-05-29,0.00000000 +516,2020-05-30,0.00000000 +516,2020-05-31,0.00000000 +516,2020-06-01,0.00000000 +516,2020-06-02,0.00000000 +516,2020-06-03,0.00000000 +516,2020-06-04,0.00000000 +516,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_517_anosmia_ms.csv b/google_health/cache/Data_517_anosmia_ms.csv index c12831d7a..dff7b639b 100644 --- a/google_health/cache/Data_517_anosmia_ms.csv +++ b/google_health/cache/Data_517_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 517,2020-05-13,0.00000000 517,2020-05-14,0.00000000 517,2020-05-15,0.00000000 +517,2020-05-16,632.60476437 +517,2020-05-17,0.00000000 +517,2020-05-18,507.54033742 +517,2020-05-19,1243.91314349 +517,2020-05-20,0.00000000 +517,2020-05-21,510.38089344 +517,2020-05-22,529.55202826 +517,2020-05-23,1239.22599285 +517,2020-05-24,0.00000000 +517,2020-05-25,1168.81239556 +517,2020-05-26,0.00000000 +517,2020-05-27,1511.63865771 +517,2020-05-28,0.00000000 +517,2020-05-29,1052.31508641 +517,2020-05-30,1204.92307685 +517,2020-05-31,0.00000000 +517,2020-06-01,551.35086354 +517,2020-06-02,545.07832882 +517,2020-06-03,0.00000000 +517,2020-06-04,527.64871508 +517,2020-06-05,1587.35196850 diff --git a/google_health/cache/Data_518_anosmia_ms.csv b/google_health/cache/Data_518_anosmia_ms.csv index bec11b944..dba58ae83 100644 --- a/google_health/cache/Data_518_anosmia_ms.csv +++ b/google_health/cache/Data_518_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 518,2020-05-13,0.00000000 518,2020-05-14,0.00000000 518,2020-05-15,0.00000000 +518,2020-05-16,0.00000000 +518,2020-05-17,0.00000000 +518,2020-05-18,1084.62391581 +518,2020-05-19,0.00000000 +518,2020-05-20,0.00000000 +518,2020-05-21,0.00000000 +518,2020-05-22,0.00000000 +518,2020-05-23,0.00000000 +518,2020-05-24,0.00000000 +518,2020-05-25,2447.40560983 +518,2020-05-26,1089.65808241 +518,2020-05-27,1028.68745511 +518,2020-05-28,2199.73311449 +518,2020-05-29,0.00000000 +518,2020-05-30,1295.31777072 +518,2020-05-31,0.00000000 +518,2020-06-01,0.00000000 +518,2020-06-02,1136.33061111 +518,2020-06-03,0.00000000 +518,2020-06-04,2177.81193473 +518,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_519_anosmia_ms.csv b/google_health/cache/Data_519_anosmia_ms.csv index db0f58ddd..449bfbeee 100644 --- a/google_health/cache/Data_519_anosmia_ms.csv +++ b/google_health/cache/Data_519_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 519,2020-05-13,1980.38931015 519,2020-05-14,0.00000000 519,2020-05-15,0.00000000 +519,2020-05-16,0.00000000 +519,2020-05-17,0.00000000 +519,2020-05-18,0.00000000 +519,2020-05-19,0.00000000 +519,2020-05-20,0.00000000 +519,2020-05-21,0.00000000 +519,2020-05-22,0.00000000 +519,2020-05-23,0.00000000 +519,2020-05-24,0.00000000 +519,2020-05-25,0.00000000 +519,2020-05-26,0.00000000 +519,2020-05-27,0.00000000 +519,2020-05-28,0.00000000 +519,2020-05-29,0.00000000 +519,2020-05-30,0.00000000 +519,2020-05-31,0.00000000 +519,2020-06-01,0.00000000 +519,2020-06-02,0.00000000 +519,2020-06-03,0.00000000 +519,2020-06-04,0.00000000 +519,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_520_anosmia_ms.csv b/google_health/cache/Data_520_anosmia_ms.csv index af50a5f96..11ee42c99 100644 --- a/google_health/cache/Data_520_anosmia_ms.csv +++ b/google_health/cache/Data_520_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 520,2020-05-13,0.00000000 520,2020-05-14,0.00000000 520,2020-05-15,0.00000000 +520,2020-05-16,0.00000000 +520,2020-05-17,0.00000000 +520,2020-05-18,0.00000000 +520,2020-05-19,0.00000000 +520,2020-05-20,0.00000000 +520,2020-05-21,0.00000000 +520,2020-05-22,0.00000000 +520,2020-05-23,0.00000000 +520,2020-05-24,0.00000000 +520,2020-05-25,0.00000000 +520,2020-05-26,0.00000000 +520,2020-05-27,0.00000000 +520,2020-05-28,0.00000000 +520,2020-05-29,0.00000000 +520,2020-05-30,0.00000000 +520,2020-05-31,0.00000000 +520,2020-06-01,0.00000000 +520,2020-06-02,0.00000000 +520,2020-06-03,0.00000000 +520,2020-06-04,0.00000000 +520,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_521_anosmia_ms.csv b/google_health/cache/Data_521_anosmia_ms.csv index d53e0f88b..05567d43d 100644 --- a/google_health/cache/Data_521_anosmia_ms.csv +++ b/google_health/cache/Data_521_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 521,2020-05-13,0.00000000 521,2020-05-14,0.00000000 521,2020-05-15,0.00000000 +521,2020-05-16,2407.88019268 +521,2020-05-17,1179.00216613 +521,2020-05-18,966.23621123 +521,2020-05-19,0.00000000 +521,2020-05-20,0.00000000 +521,2020-05-21,0.00000000 +521,2020-05-22,0.00000000 +521,2020-05-23,0.00000000 +521,2020-05-24,0.00000000 +521,2020-05-25,2376.59826106 +521,2020-05-26,0.00000000 +521,2020-05-27,3057.31890423 +521,2020-05-28,0.00000000 +521,2020-05-29,0.00000000 +521,2020-05-30,0.00000000 +521,2020-05-31,0.00000000 +521,2020-06-01,0.00000000 +521,2020-06-02,1024.90885727 +521,2020-06-03,0.00000000 +521,2020-06-04,0.00000000 +521,2020-06-05,1987.72494718 diff --git a/google_health/cache/Data_522_anosmia_ms.csv b/google_health/cache/Data_522_anosmia_ms.csv index aee9722bb..e26cf61a8 100644 --- a/google_health/cache/Data_522_anosmia_ms.csv +++ b/google_health/cache/Data_522_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 522,2020-05-13,0.00000000 522,2020-05-14,0.00000000 522,2020-05-15,0.00000000 +522,2020-05-16,0.00000000 +522,2020-05-17,0.00000000 +522,2020-05-18,0.00000000 +522,2020-05-19,0.00000000 +522,2020-05-20,0.00000000 +522,2020-05-21,0.00000000 +522,2020-05-22,0.00000000 +522,2020-05-23,0.00000000 +522,2020-05-24,0.00000000 +522,2020-05-25,0.00000000 +522,2020-05-26,7361.05999264 +522,2020-05-27,0.00000000 +522,2020-05-28,0.00000000 +522,2020-05-29,0.00000000 +522,2020-05-30,8247.42268041 +522,2020-05-31,0.00000000 +522,2020-06-01,0.00000000 +522,2020-06-02,0.00000000 +522,2020-06-03,0.00000000 +522,2020-06-04,0.00000000 +522,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_523_anosmia_ms.csv b/google_health/cache/Data_523_anosmia_ms.csv index aa908a17b..0afc52110 100644 --- a/google_health/cache/Data_523_anosmia_ms.csv +++ b/google_health/cache/Data_523_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 523,2020-05-13,0.00000000 523,2020-05-14,0.00000000 523,2020-05-15,0.00000000 +523,2020-05-16,0.00000000 +523,2020-05-17,0.00000000 +523,2020-05-18,2357.07279025 +523,2020-05-19,2469.13580247 +523,2020-05-20,7500.00000000 +523,2020-05-21,0.00000000 +523,2020-05-22,0.00000000 +523,2020-05-23,0.00000000 +523,2020-05-24,0.00000000 +523,2020-05-25,0.00000000 +523,2020-05-26,0.00000000 +523,2020-05-27,0.00000000 +523,2020-05-28,0.00000000 +523,2020-05-29,0.00000000 +523,2020-05-30,0.00000000 +523,2020-05-31,0.00000000 +523,2020-06-01,0.00000000 +523,2020-06-02,0.00000000 +523,2020-06-03,0.00000000 +523,2020-06-04,0.00000000 +523,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_524_anosmia_ms.csv b/google_health/cache/Data_524_anosmia_ms.csv index d66b9ced1..4fc5d3f69 100644 --- a/google_health/cache/Data_524_anosmia_ms.csv +++ b/google_health/cache/Data_524_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 524,2020-05-13,395.11245398 524,2020-05-14,391.29790702 524,2020-05-15,0.00000000 +524,2020-05-16,681.34674879 +524,2020-05-17,233.34015889 +524,2020-05-18,756.82428096 +524,2020-05-19,702.72078370 +524,2020-05-20,596.01175685 +524,2020-05-21,821.61819792 +524,2020-05-22,209.31356052 +524,2020-05-23,698.94041868 +524,2020-05-24,474.74835946 +524,2020-05-25,232.17932017 +524,2020-05-26,413.17532182 +524,2020-05-27,800.59610178 +524,2020-05-28,0.00000000 +524,2020-05-29,0.00000000 +524,2020-05-30,0.00000000 +524,2020-05-31,0.00000000 +524,2020-06-01,412.55183563 +524,2020-06-02,409.13440331 +524,2020-06-03,195.39638245 +524,2020-06-04,194.10144678 +524,2020-06-05,390.78511198 diff --git a/google_health/cache/Data_525_anosmia_ms.csv b/google_health/cache/Data_525_anosmia_ms.csv index bd305889a..68a503c58 100644 --- a/google_health/cache/Data_525_anosmia_ms.csv +++ b/google_health/cache/Data_525_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 525,2020-05-13,6618.13368630 525,2020-05-14,0.00000000 525,2020-05-15,0.00000000 +525,2020-05-16,8326.39467111 +525,2020-05-17,0.00000000 +525,2020-05-18,0.00000000 +525,2020-05-19,0.00000000 +525,2020-05-20,0.00000000 +525,2020-05-21,0.00000000 +525,2020-05-22,0.00000000 +525,2020-05-23,0.00000000 +525,2020-05-24,0.00000000 +525,2020-05-25,0.00000000 +525,2020-05-26,0.00000000 +525,2020-05-27,0.00000000 +525,2020-05-28,0.00000000 +525,2020-05-29,0.00000000 +525,2020-05-30,0.00000000 +525,2020-05-31,0.00000000 +525,2020-06-01,0.00000000 +525,2020-06-02,0.00000000 +525,2020-06-03,0.00000000 +525,2020-06-04,0.00000000 +525,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_526_anosmia_ms.csv b/google_health/cache/Data_526_anosmia_ms.csv index bb09e7b63..ad8f29fdf 100644 --- a/google_health/cache/Data_526_anosmia_ms.csv +++ b/google_health/cache/Data_526_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 526,2020-05-13,0.00000000 526,2020-05-14,0.00000000 526,2020-05-15,0.00000000 +526,2020-05-16,0.00000000 +526,2020-05-17,0.00000000 +526,2020-05-18,0.00000000 +526,2020-05-19,0.00000000 +526,2020-05-20,0.00000000 +526,2020-05-21,0.00000000 +526,2020-05-22,0.00000000 +526,2020-05-23,0.00000000 +526,2020-05-24,0.00000000 +526,2020-05-25,0.00000000 +526,2020-05-26,0.00000000 +526,2020-05-27,0.00000000 +526,2020-05-28,0.00000000 +526,2020-05-29,0.00000000 +526,2020-05-30,0.00000000 +526,2020-05-31,0.00000000 +526,2020-06-01,0.00000000 +526,2020-06-02,0.00000000 +526,2020-06-03,0.00000000 +526,2020-06-04,0.00000000 +526,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_527_anosmia_ms.csv b/google_health/cache/Data_527_anosmia_ms.csv index c1c464389..f43db03a2 100644 --- a/google_health/cache/Data_527_anosmia_ms.csv +++ b/google_health/cache/Data_527_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 527,2020-05-13,0.00000000 527,2020-05-14,0.00000000 527,2020-05-15,0.00000000 +527,2020-05-16,0.00000000 +527,2020-05-17,1974.88377310 +527,2020-05-18,0.00000000 +527,2020-05-19,1160.85682581 +527,2020-05-20,0.00000000 +527,2020-05-21,0.00000000 +527,2020-05-22,650.31155908 +527,2020-05-23,720.48385090 +527,2020-05-24,0.00000000 +527,2020-05-25,0.00000000 +527,2020-05-26,638.92764050 +527,2020-05-27,0.00000000 +527,2020-05-28,0.00000000 +527,2020-05-29,0.00000000 +527,2020-05-30,0.00000000 +527,2020-05-31,741.78162108 +527,2020-06-01,1263.38737692 +527,2020-06-02,0.00000000 +527,2020-06-03,616.53195077 +527,2020-06-04,0.00000000 +527,2020-06-05,626.60765179 diff --git a/google_health/cache/Data_528_anosmia_ms.csv b/google_health/cache/Data_528_anosmia_ms.csv index a228161d4..80b33ef47 100644 --- a/google_health/cache/Data_528_anosmia_ms.csv +++ b/google_health/cache/Data_528_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 528,2020-05-13,1004.78622920 528,2020-05-14,0.00000000 528,2020-05-15,0.00000000 +528,2020-05-16,379.88173361 +528,2020-05-17,786.41288831 +528,2020-05-18,0.00000000 +528,2020-05-19,693.40800089 +528,2020-05-20,691.88940755 +528,2020-05-21,0.00000000 +528,2020-05-22,360.58078208 +528,2020-05-23,0.00000000 +528,2020-05-24,0.00000000 +528,2020-05-25,390.72982681 +528,2020-05-26,703.43465405 +528,2020-05-27,354.62280034 +528,2020-05-28,725.85408608 +528,2020-05-29,0.00000000 +528,2020-05-30,0.00000000 +528,2020-05-31,0.00000000 +528,2020-06-01,0.00000000 +528,2020-06-02,0.00000000 +528,2020-06-03,1365.21694284 +528,2020-06-04,962.45866854 +528,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_529_anosmia_ms.csv b/google_health/cache/Data_529_anosmia_ms.csv index 4d9b43832..90650f2b6 100644 --- a/google_health/cache/Data_529_anosmia_ms.csv +++ b/google_health/cache/Data_529_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 529,2020-05-13,0.00000000 529,2020-05-14,0.00000000 529,2020-05-15,0.00000000 +529,2020-05-16,0.00000000 +529,2020-05-17,0.00000000 +529,2020-05-18,2049.37882592 +529,2020-05-19,1037.90201313 +529,2020-05-20,0.00000000 +529,2020-05-21,0.00000000 +529,2020-05-22,0.00000000 +529,2020-05-23,0.00000000 +529,2020-05-24,0.00000000 +529,2020-05-25,0.00000000 +529,2020-05-26,0.00000000 +529,2020-05-27,0.00000000 +529,2020-05-28,1094.13453165 +529,2020-05-29,1094.83365397 +529,2020-05-30,0.00000000 +529,2020-05-31,0.00000000 +529,2020-06-01,1130.92637964 +529,2020-06-02,0.00000000 +529,2020-06-03,0.00000000 +529,2020-06-04,0.00000000 +529,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_530_anosmia_ms.csv b/google_health/cache/Data_530_anosmia_ms.csv index fcdff3118..62267d70f 100644 --- a/google_health/cache/Data_530_anosmia_ms.csv +++ b/google_health/cache/Data_530_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 530,2020-05-13,0.00000000 530,2020-05-14,0.00000000 530,2020-05-15,0.00000000 +530,2020-05-16,0.00000000 +530,2020-05-17,0.00000000 +530,2020-05-18,0.00000000 +530,2020-05-19,0.00000000 +530,2020-05-20,5810.57524695 +530,2020-05-21,0.00000000 +530,2020-05-22,0.00000000 +530,2020-05-23,0.00000000 +530,2020-05-24,0.00000000 +530,2020-05-25,0.00000000 +530,2020-05-26,0.00000000 +530,2020-05-27,2961.20817293 +530,2020-05-28,0.00000000 +530,2020-05-29,0.00000000 +530,2020-05-30,0.00000000 +530,2020-05-31,0.00000000 +530,2020-06-01,0.00000000 +530,2020-06-02,0.00000000 +530,2020-06-03,0.00000000 +530,2020-06-04,0.00000000 +530,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_531_anosmia_ms.csv b/google_health/cache/Data_531_anosmia_ms.csv index b9bf7b018..381071314 100644 --- a/google_health/cache/Data_531_anosmia_ms.csv +++ b/google_health/cache/Data_531_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 531,2020-05-13,0.00000000 531,2020-05-14,0.00000000 531,2020-05-15,0.00000000 +531,2020-05-16,0.00000000 +531,2020-05-17,0.00000000 +531,2020-05-18,0.00000000 +531,2020-05-19,0.00000000 +531,2020-05-20,0.00000000 +531,2020-05-21,6379.58532695 +531,2020-05-22,0.00000000 +531,2020-05-23,0.00000000 +531,2020-05-24,0.00000000 +531,2020-05-25,0.00000000 +531,2020-05-26,0.00000000 +531,2020-05-27,0.00000000 +531,2020-05-28,0.00000000 +531,2020-05-29,0.00000000 +531,2020-05-30,0.00000000 +531,2020-05-31,0.00000000 +531,2020-06-01,0.00000000 +531,2020-06-02,0.00000000 +531,2020-06-03,0.00000000 +531,2020-06-04,3007.51879699 +531,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_532_anosmia_ms.csv b/google_health/cache/Data_532_anosmia_ms.csv index 565a863f2..2c4efe908 100644 --- a/google_health/cache/Data_532_anosmia_ms.csv +++ b/google_health/cache/Data_532_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 532,2020-05-13,2297.91663812 532,2020-05-14,0.00000000 532,2020-05-15,0.00000000 +532,2020-05-16,1429.02641905 +532,2020-05-17,0.00000000 +532,2020-05-18,0.00000000 +532,2020-05-19,1198.90273407 +532,2020-05-20,0.00000000 +532,2020-05-21,0.00000000 +532,2020-05-22,0.00000000 +532,2020-05-23,0.00000000 +532,2020-05-24,4405.25143396 +532,2020-05-25,2759.99065507 +532,2020-05-26,0.00000000 +532,2020-05-27,3496.17366171 +532,2020-05-28,2329.03655070 +532,2020-05-29,0.00000000 +532,2020-05-30,2724.92751659 +532,2020-05-31,1354.27460549 +532,2020-06-01,0.00000000 +532,2020-06-02,0.00000000 +532,2020-06-03,0.00000000 +532,2020-06-04,0.00000000 +532,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_533_anosmia_ms.csv b/google_health/cache/Data_533_anosmia_ms.csv index 93f3cd04d..bf2bd2124 100644 --- a/google_health/cache/Data_533_anosmia_ms.csv +++ b/google_health/cache/Data_533_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 533,2020-05-13,578.53341376 533,2020-05-14,0.00000000 533,2020-05-15,594.64686271 +533,2020-05-16,0.00000000 +533,2020-05-17,0.00000000 +533,2020-05-18,1127.81473816 +533,2020-05-19,0.00000000 +533,2020-05-20,0.00000000 +533,2020-05-21,1809.14002824 +533,2020-05-22,0.00000000 +533,2020-05-23,654.86131400 +533,2020-05-24,0.00000000 +533,2020-05-25,674.36206729 +533,2020-05-26,1773.56678271 +533,2020-05-27,589.26188585 +533,2020-05-28,0.00000000 +533,2020-05-29,0.00000000 +533,2020-05-30,0.00000000 +533,2020-05-31,0.00000000 +533,2020-06-01,1163.00387651 +533,2020-06-02,2336.73898396 +533,2020-06-03,1114.27442441 +533,2020-06-04,0.00000000 +533,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_534_anosmia_ms.csv b/google_health/cache/Data_534_anosmia_ms.csv index f33502156..9681db2d3 100644 --- a/google_health/cache/Data_534_anosmia_ms.csv +++ b/google_health/cache/Data_534_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 534,2020-05-13,0.00000000 534,2020-05-14,0.00000000 534,2020-05-15,0.00000000 +534,2020-05-16,1224.62682685 +534,2020-05-17,839.72275665 +534,2020-05-18,351.40434962 +534,2020-05-19,1004.21165865 +534,2020-05-20,0.00000000 +534,2020-05-21,0.00000000 +534,2020-05-22,344.35481840 +534,2020-05-23,383.34694016 +534,2020-05-24,0.00000000 +534,2020-05-25,0.00000000 +534,2020-05-26,342.77705924 +534,2020-05-27,667.06751208 +534,2020-05-28,0.00000000 +534,2020-05-29,357.86504133 +534,2020-05-30,362.97617570 +534,2020-05-31,384.00635565 +534,2020-06-01,0.00000000 +534,2020-06-02,699.44846318 +534,2020-06-03,342.27898343 +534,2020-06-04,349.29408946 +534,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_535_anosmia_ms.csv b/google_health/cache/Data_535_anosmia_ms.csv index 3d4d00b3e..7d418c983 100644 --- a/google_health/cache/Data_535_anosmia_ms.csv +++ b/google_health/cache/Data_535_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 535,2020-05-13,721.47116012 535,2020-05-14,669.37315374 535,2020-05-15,0.00000000 +535,2020-05-16,1581.05588336 +535,2020-05-17,789.33199756 +535,2020-05-18,648.47379952 +535,2020-05-19,0.00000000 +535,2020-05-20,656.11632559 +535,2020-05-21,1979.69381717 +535,2020-05-22,2123.03038217 +535,2020-05-23,0.00000000 +535,2020-05-24,0.00000000 +535,2020-05-25,0.00000000 +535,2020-05-26,0.00000000 +535,2020-05-27,2237.33669130 +535,2020-05-28,0.00000000 +535,2020-05-29,0.00000000 +535,2020-05-30,0.00000000 +535,2020-05-31,0.00000000 +535,2020-06-01,781.63893020 +535,2020-06-02,0.00000000 +535,2020-06-03,1450.31571808 +535,2020-06-04,693.84679041 +535,2020-06-05,2225.20938710 diff --git a/google_health/cache/Data_536_anosmia_ms.csv b/google_health/cache/Data_536_anosmia_ms.csv index e89911e5b..a44f50663 100644 --- a/google_health/cache/Data_536_anosmia_ms.csv +++ b/google_health/cache/Data_536_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 536,2020-05-13,0.00000000 536,2020-05-14,0.00000000 536,2020-05-15,3234.15265201 +536,2020-05-16,0.00000000 +536,2020-05-17,0.00000000 +536,2020-05-18,0.00000000 +536,2020-05-19,0.00000000 +536,2020-05-20,0.00000000 +536,2020-05-21,0.00000000 +536,2020-05-22,0.00000000 +536,2020-05-23,11450.38167939 +536,2020-05-24,0.00000000 +536,2020-05-25,0.00000000 +536,2020-05-26,0.00000000 +536,2020-05-27,0.00000000 +536,2020-05-28,0.00000000 +536,2020-05-29,0.00000000 +536,2020-05-30,0.00000000 +536,2020-05-31,0.00000000 +536,2020-06-01,0.00000000 +536,2020-06-02,0.00000000 +536,2020-06-03,0.00000000 +536,2020-06-04,0.00000000 +536,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_537_anosmia_ms.csv b/google_health/cache/Data_537_anosmia_ms.csv index 920d95c82..4843c631d 100644 --- a/google_health/cache/Data_537_anosmia_ms.csv +++ b/google_health/cache/Data_537_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 537,2020-05-13,0.00000000 537,2020-05-14,0.00000000 537,2020-05-15,0.00000000 +537,2020-05-16,0.00000000 +537,2020-05-17,0.00000000 +537,2020-05-18,0.00000000 +537,2020-05-19,0.00000000 +537,2020-05-20,0.00000000 +537,2020-05-21,0.00000000 +537,2020-05-22,0.00000000 +537,2020-05-23,0.00000000 +537,2020-05-24,0.00000000 +537,2020-05-25,0.00000000 +537,2020-05-26,0.00000000 +537,2020-05-27,0.00000000 +537,2020-05-28,0.00000000 +537,2020-05-29,0.00000000 +537,2020-05-30,0.00000000 +537,2020-05-31,0.00000000 +537,2020-06-01,0.00000000 +537,2020-06-02,0.00000000 +537,2020-06-03,0.00000000 +537,2020-06-04,0.00000000 +537,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_538_anosmia_ms.csv b/google_health/cache/Data_538_anosmia_ms.csv index 17c4869ab..b0ec8ba0d 100644 --- a/google_health/cache/Data_538_anosmia_ms.csv +++ b/google_health/cache/Data_538_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 538,2020-05-13,1755.61797753 538,2020-05-14,0.00000000 538,2020-05-15,0.00000000 +538,2020-05-16,0.00000000 +538,2020-05-17,0.00000000 +538,2020-05-18,0.00000000 +538,2020-05-19,0.00000000 +538,2020-05-20,0.00000000 +538,2020-05-21,0.00000000 +538,2020-05-22,3816.79389313 +538,2020-05-23,0.00000000 +538,2020-05-24,0.00000000 +538,2020-05-25,0.00000000 +538,2020-05-26,1810.93806592 +538,2020-05-27,0.00000000 +538,2020-05-28,0.00000000 +538,2020-05-29,0.00000000 +538,2020-05-30,0.00000000 +538,2020-05-31,0.00000000 +538,2020-06-01,0.00000000 +538,2020-06-02,0.00000000 +538,2020-06-03,3205.06242744 +538,2020-06-04,1688.90390137 +538,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_539_anosmia_ms.csv b/google_health/cache/Data_539_anosmia_ms.csv index 4e186cf85..7a747d472 100644 --- a/google_health/cache/Data_539_anosmia_ms.csv +++ b/google_health/cache/Data_539_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 539,2020-05-13,341.19463731 539,2020-05-14,0.00000000 539,2020-05-15,344.66005934 +539,2020-05-16,0.00000000 +539,2020-05-17,793.63606907 +539,2020-05-18,341.55671613 +539,2020-05-19,686.44728221 +539,2020-05-20,348.16386383 +539,2020-05-21,351.77953186 +539,2020-05-22,0.00000000 +539,2020-05-23,397.51938477 +539,2020-05-24,0.00000000 +539,2020-05-25,1136.15393642 +539,2020-05-26,352.59860724 +539,2020-05-27,344.85024832 +539,2020-05-28,0.00000000 +539,2020-05-29,0.00000000 +539,2020-05-30,0.00000000 +539,2020-05-31,0.00000000 +539,2020-06-01,0.00000000 +539,2020-06-02,1064.15637041 +539,2020-06-03,671.85194540 +539,2020-06-04,332.25005462 +539,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_540_anosmia_ms.csv b/google_health/cache/Data_540_anosmia_ms.csv index bf9b8018e..9f6fbcb38 100644 --- a/google_health/cache/Data_540_anosmia_ms.csv +++ b/google_health/cache/Data_540_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 540,2020-05-13,0.00000000 540,2020-05-14,0.00000000 540,2020-05-15,0.00000000 +540,2020-05-16,0.00000000 +540,2020-05-17,0.00000000 +540,2020-05-18,0.00000000 +540,2020-05-19,0.00000000 +540,2020-05-20,0.00000000 +540,2020-05-21,0.00000000 +540,2020-05-22,0.00000000 +540,2020-05-23,0.00000000 +540,2020-05-24,0.00000000 +540,2020-05-25,0.00000000 +540,2020-05-26,0.00000000 +540,2020-05-27,0.00000000 +540,2020-05-28,0.00000000 +540,2020-05-29,0.00000000 +540,2020-05-30,0.00000000 +540,2020-05-31,0.00000000 +540,2020-06-01,0.00000000 +540,2020-06-02,0.00000000 +540,2020-06-03,0.00000000 +540,2020-06-04,0.00000000 +540,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_541_anosmia_ms.csv b/google_health/cache/Data_541_anosmia_ms.csv index ba2380d52..d92f21289 100644 --- a/google_health/cache/Data_541_anosmia_ms.csv +++ b/google_health/cache/Data_541_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 541,2020-05-13,0.00000000 541,2020-05-14,0.00000000 541,2020-05-15,0.00000000 +541,2020-05-16,0.00000000 +541,2020-05-17,0.00000000 +541,2020-05-18,0.00000000 +541,2020-05-19,0.00000000 +541,2020-05-20,0.00000000 +541,2020-05-21,0.00000000 +541,2020-05-22,0.00000000 +541,2020-05-23,0.00000000 +541,2020-05-24,1963.79848670 +541,2020-05-25,0.00000000 +541,2020-05-26,1741.55346569 +541,2020-05-27,0.00000000 +541,2020-05-28,0.00000000 +541,2020-05-29,0.00000000 +541,2020-05-30,0.00000000 +541,2020-05-31,0.00000000 +541,2020-06-01,0.00000000 +541,2020-06-02,0.00000000 +541,2020-06-03,0.00000000 +541,2020-06-04,0.00000000 +541,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_542_anosmia_ms.csv b/google_health/cache/Data_542_anosmia_ms.csv index 23e679cce..057f73d5c 100644 --- a/google_health/cache/Data_542_anosmia_ms.csv +++ b/google_health/cache/Data_542_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 542,2020-05-13,0.00000000 542,2020-05-14,0.00000000 542,2020-05-15,0.00000000 +542,2020-05-16,0.00000000 +542,2020-05-17,0.00000000 +542,2020-05-18,1704.73917491 +542,2020-05-19,1692.62017603 +542,2020-05-20,0.00000000 +542,2020-05-21,0.00000000 +542,2020-05-22,0.00000000 +542,2020-05-23,0.00000000 +542,2020-05-24,2127.42822371 +542,2020-05-25,0.00000000 +542,2020-05-26,0.00000000 +542,2020-05-27,0.00000000 +542,2020-05-28,0.00000000 +542,2020-05-29,0.00000000 +542,2020-05-30,0.00000000 +542,2020-05-31,0.00000000 +542,2020-06-01,1877.89080242 +542,2020-06-02,0.00000000 +542,2020-06-03,0.00000000 +542,2020-06-04,0.00000000 +542,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_543_anosmia_ms.csv b/google_health/cache/Data_543_anosmia_ms.csv index 3e0c05f3f..e760e3075 100644 --- a/google_health/cache/Data_543_anosmia_ms.csv +++ b/google_health/cache/Data_543_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 543,2020-05-13,0.00000000 543,2020-05-14,0.00000000 543,2020-05-15,0.00000000 +543,2020-05-16,6009.61538462 +543,2020-05-17,3075.03075031 +543,2020-05-18,2457.00245700 +543,2020-05-19,0.00000000 +543,2020-05-20,0.00000000 +543,2020-05-21,2753.30396476 +543,2020-05-22,0.00000000 +543,2020-05-23,0.00000000 +543,2020-05-24,0.00000000 +543,2020-05-25,0.00000000 +543,2020-05-26,0.00000000 +543,2020-05-27,0.00000000 +543,2020-05-28,0.00000000 +543,2020-05-29,0.00000000 +543,2020-05-30,0.00000000 +543,2020-05-31,0.00000000 +543,2020-06-01,2735.97811218 +543,2020-06-02,0.00000000 +543,2020-06-03,0.00000000 +543,2020-06-04,0.00000000 +543,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_544_anosmia_ms.csv b/google_health/cache/Data_544_anosmia_ms.csv index f6914a143..f8e419b28 100644 --- a/google_health/cache/Data_544_anosmia_ms.csv +++ b/google_health/cache/Data_544_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 544,2020-05-13,0.00000000 544,2020-05-14,0.00000000 544,2020-05-15,1648.51450930 +544,2020-05-16,0.00000000 +544,2020-05-17,0.00000000 +544,2020-05-18,0.00000000 +544,2020-05-19,776.69165915 +544,2020-05-20,0.00000000 +544,2020-05-21,0.00000000 +544,2020-05-22,0.00000000 +544,2020-05-23,1798.35491816 +544,2020-05-24,907.72136671 +544,2020-05-25,881.47233017 +544,2020-05-26,807.38287246 +544,2020-05-27,0.00000000 +544,2020-05-28,0.00000000 +544,2020-05-29,0.00000000 +544,2020-05-30,0.00000000 +544,2020-05-31,908.32428843 +544,2020-06-01,0.00000000 +544,2020-06-02,0.00000000 +544,2020-06-03,0.00000000 +544,2020-06-04,775.24045205 +544,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_545_anosmia_ms.csv b/google_health/cache/Data_545_anosmia_ms.csv index d87491cbc..42396f6e7 100644 --- a/google_health/cache/Data_545_anosmia_ms.csv +++ b/google_health/cache/Data_545_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 545,2020-05-13,0.00000000 545,2020-05-14,2633.65815117 545,2020-05-15,0.00000000 +545,2020-05-16,0.00000000 +545,2020-05-17,0.00000000 +545,2020-05-18,0.00000000 +545,2020-05-19,0.00000000 +545,2020-05-20,0.00000000 +545,2020-05-21,0.00000000 +545,2020-05-22,0.00000000 +545,2020-05-23,0.00000000 +545,2020-05-24,0.00000000 +545,2020-05-25,0.00000000 +545,2020-05-26,0.00000000 +545,2020-05-27,0.00000000 +545,2020-05-28,2506.26566416 +545,2020-05-29,0.00000000 +545,2020-05-30,0.00000000 +545,2020-05-31,0.00000000 +545,2020-06-01,0.00000000 +545,2020-06-02,0.00000000 +545,2020-06-03,0.00000000 +545,2020-06-04,2534.21186011 +545,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_546_anosmia_ms.csv b/google_health/cache/Data_546_anosmia_ms.csv index 2dec46c3a..e2196d637 100644 --- a/google_health/cache/Data_546_anosmia_ms.csv +++ b/google_health/cache/Data_546_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 546,2020-05-13,0.00000000 546,2020-05-14,0.00000000 546,2020-05-15,0.00000000 +546,2020-05-16,0.00000000 +546,2020-05-17,0.00000000 +546,2020-05-18,0.00000000 +546,2020-05-19,0.00000000 +546,2020-05-20,0.00000000 +546,2020-05-21,0.00000000 +546,2020-05-22,0.00000000 +546,2020-05-23,0.00000000 +546,2020-05-24,0.00000000 +546,2020-05-25,0.00000000 +546,2020-05-26,0.00000000 +546,2020-05-27,0.00000000 +546,2020-05-28,0.00000000 +546,2020-05-29,0.00000000 +546,2020-05-30,0.00000000 +546,2020-05-31,0.00000000 +546,2020-06-01,0.00000000 +546,2020-06-02,0.00000000 +546,2020-06-03,5539.14327917 +546,2020-06-04,0.00000000 +546,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_547_anosmia_ms.csv b/google_health/cache/Data_547_anosmia_ms.csv index 78ea0fc2b..1bcc3ae72 100644 --- a/google_health/cache/Data_547_anosmia_ms.csv +++ b/google_health/cache/Data_547_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 547,2020-05-13,0.00000000 547,2020-05-14,0.00000000 547,2020-05-15,0.00000000 +547,2020-05-16,0.00000000 +547,2020-05-17,0.00000000 +547,2020-05-18,3575.25920629 +547,2020-05-19,0.00000000 +547,2020-05-20,0.00000000 +547,2020-05-21,0.00000000 +547,2020-05-22,0.00000000 +547,2020-05-23,0.00000000 +547,2020-05-24,0.00000000 +547,2020-05-25,0.00000000 +547,2020-05-26,0.00000000 +547,2020-05-27,1988.46689203 +547,2020-05-28,0.00000000 +547,2020-05-29,0.00000000 +547,2020-05-30,0.00000000 +547,2020-05-31,0.00000000 +547,2020-06-01,0.00000000 +547,2020-06-02,0.00000000 +547,2020-06-03,0.00000000 +547,2020-06-04,0.00000000 +547,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_548_anosmia_ms.csv b/google_health/cache/Data_548_anosmia_ms.csv index f9ecdd29c..e01c3cf77 100644 --- a/google_health/cache/Data_548_anosmia_ms.csv +++ b/google_health/cache/Data_548_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 548,2020-05-13,0.00000000 548,2020-05-14,0.00000000 548,2020-05-15,819.07376849 +548,2020-05-16,0.00000000 +548,2020-05-17,0.00000000 +548,2020-05-18,1642.25614031 +548,2020-05-19,0.00000000 +548,2020-05-20,0.00000000 +548,2020-05-21,0.00000000 +548,2020-05-22,2575.87068125 +548,2020-05-23,0.00000000 +548,2020-05-24,0.00000000 +548,2020-05-25,907.05949387 +548,2020-05-26,843.95953396 +548,2020-05-27,0.00000000 +548,2020-05-28,0.00000000 +548,2020-05-29,0.00000000 +548,2020-05-30,1023.00587617 +548,2020-05-31,0.00000000 +548,2020-06-01,1767.13004065 +548,2020-06-02,0.00000000 +548,2020-06-03,0.00000000 +548,2020-06-04,838.58309077 +548,2020-06-05,2652.75137997 diff --git a/google_health/cache/Data_549_anosmia_ms.csv b/google_health/cache/Data_549_anosmia_ms.csv index 89d529216..449154262 100644 --- a/google_health/cache/Data_549_anosmia_ms.csv +++ b/google_health/cache/Data_549_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 549,2020-05-13,0.00000000 549,2020-05-14,0.00000000 549,2020-05-15,0.00000000 +549,2020-05-16,0.00000000 +549,2020-05-17,0.00000000 +549,2020-05-18,0.00000000 +549,2020-05-19,0.00000000 +549,2020-05-20,0.00000000 +549,2020-05-21,0.00000000 +549,2020-05-22,0.00000000 +549,2020-05-23,0.00000000 +549,2020-05-24,0.00000000 +549,2020-05-25,0.00000000 +549,2020-05-26,0.00000000 +549,2020-05-27,0.00000000 +549,2020-05-28,0.00000000 +549,2020-05-29,0.00000000 +549,2020-05-30,0.00000000 +549,2020-05-31,0.00000000 +549,2020-06-01,0.00000000 +549,2020-06-02,0.00000000 +549,2020-06-03,0.00000000 +549,2020-06-04,0.00000000 +549,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_550_anosmia_ms.csv b/google_health/cache/Data_550_anosmia_ms.csv index 43037ed5b..65ffe468a 100644 --- a/google_health/cache/Data_550_anosmia_ms.csv +++ b/google_health/cache/Data_550_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 550,2020-05-13,0.00000000 550,2020-05-14,0.00000000 550,2020-05-15,0.00000000 +550,2020-05-16,0.00000000 +550,2020-05-17,0.00000000 +550,2020-05-18,0.00000000 +550,2020-05-19,0.00000000 +550,2020-05-20,3409.47261529 +550,2020-05-21,0.00000000 +550,2020-05-22,0.00000000 +550,2020-05-23,0.00000000 +550,2020-05-24,0.00000000 +550,2020-05-25,0.00000000 +550,2020-05-26,0.00000000 +550,2020-05-27,0.00000000 +550,2020-05-28,0.00000000 +550,2020-05-29,0.00000000 +550,2020-05-30,0.00000000 +550,2020-05-31,0.00000000 +550,2020-06-01,0.00000000 +550,2020-06-02,0.00000000 +550,2020-06-03,0.00000000 +550,2020-06-04,0.00000000 +550,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_551_anosmia_ms.csv b/google_health/cache/Data_551_anosmia_ms.csv index 5e8665ae7..35bd4deb4 100644 --- a/google_health/cache/Data_551_anosmia_ms.csv +++ b/google_health/cache/Data_551_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 551,2020-05-13,0.00000000 551,2020-05-14,0.00000000 551,2020-05-15,0.00000000 +551,2020-05-16,0.00000000 +551,2020-05-17,0.00000000 +551,2020-05-18,0.00000000 +551,2020-05-19,0.00000000 +551,2020-05-20,0.00000000 +551,2020-05-21,0.00000000 +551,2020-05-22,0.00000000 +551,2020-05-23,0.00000000 +551,2020-05-24,0.00000000 +551,2020-05-25,0.00000000 +551,2020-05-26,0.00000000 +551,2020-05-27,0.00000000 +551,2020-05-28,0.00000000 +551,2020-05-29,0.00000000 +551,2020-05-30,0.00000000 +551,2020-05-31,0.00000000 +551,2020-06-01,0.00000000 +551,2020-06-02,0.00000000 +551,2020-06-03,0.00000000 +551,2020-06-04,0.00000000 +551,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_552_anosmia_ms.csv b/google_health/cache/Data_552_anosmia_ms.csv index ee967f679..118163efb 100644 --- a/google_health/cache/Data_552_anosmia_ms.csv +++ b/google_health/cache/Data_552_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 552,2020-05-13,0.00000000 552,2020-05-14,0.00000000 552,2020-05-15,0.00000000 +552,2020-05-16,0.00000000 +552,2020-05-17,0.00000000 +552,2020-05-18,0.00000000 +552,2020-05-19,0.00000000 +552,2020-05-20,0.00000000 +552,2020-05-21,0.00000000 +552,2020-05-22,0.00000000 +552,2020-05-23,0.00000000 +552,2020-05-24,0.00000000 +552,2020-05-25,0.00000000 +552,2020-05-26,0.00000000 +552,2020-05-27,0.00000000 +552,2020-05-28,0.00000000 +552,2020-05-29,0.00000000 +552,2020-05-30,0.00000000 +552,2020-05-31,0.00000000 +552,2020-06-01,0.00000000 +552,2020-06-02,0.00000000 +552,2020-06-03,0.00000000 +552,2020-06-04,0.00000000 +552,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_553_anosmia_ms.csv b/google_health/cache/Data_553_anosmia_ms.csv index 63cc6e39f..796ba9004 100644 --- a/google_health/cache/Data_553_anosmia_ms.csv +++ b/google_health/cache/Data_553_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 553,2020-05-13,0.00000000 553,2020-05-14,0.00000000 553,2020-05-15,0.00000000 +553,2020-05-16,0.00000000 +553,2020-05-17,0.00000000 +553,2020-05-18,0.00000000 +553,2020-05-19,0.00000000 +553,2020-05-20,0.00000000 +553,2020-05-21,0.00000000 +553,2020-05-22,0.00000000 +553,2020-05-23,0.00000000 +553,2020-05-24,0.00000000 +553,2020-05-25,0.00000000 +553,2020-05-26,0.00000000 +553,2020-05-27,0.00000000 +553,2020-05-28,0.00000000 +553,2020-05-29,0.00000000 +553,2020-05-30,0.00000000 +553,2020-05-31,0.00000000 +553,2020-06-01,0.00000000 +553,2020-06-02,0.00000000 +553,2020-06-03,0.00000000 +553,2020-06-04,0.00000000 +553,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_554_anosmia_ms.csv b/google_health/cache/Data_554_anosmia_ms.csv index 6d8c050b5..3c0ea09b2 100644 --- a/google_health/cache/Data_554_anosmia_ms.csv +++ b/google_health/cache/Data_554_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 554,2020-05-13,0.00000000 554,2020-05-14,0.00000000 554,2020-05-15,0.00000000 +554,2020-05-16,0.00000000 +554,2020-05-17,0.00000000 +554,2020-05-18,0.00000000 +554,2020-05-19,0.00000000 +554,2020-05-20,0.00000000 +554,2020-05-21,0.00000000 +554,2020-05-22,0.00000000 +554,2020-05-23,0.00000000 +554,2020-05-24,0.00000000 +554,2020-05-25,0.00000000 +554,2020-05-26,0.00000000 +554,2020-05-27,0.00000000 +554,2020-05-28,0.00000000 +554,2020-05-29,0.00000000 +554,2020-05-30,0.00000000 +554,2020-05-31,0.00000000 +554,2020-06-01,0.00000000 +554,2020-06-02,0.00000000 +554,2020-06-03,0.00000000 +554,2020-06-04,0.00000000 +554,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_555_anosmia_ms.csv b/google_health/cache/Data_555_anosmia_ms.csv index 3780e95a1..9d629aea9 100644 --- a/google_health/cache/Data_555_anosmia_ms.csv +++ b/google_health/cache/Data_555_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 555,2020-05-13,0.00000000 555,2020-05-14,1908.02711480 555,2020-05-15,0.00000000 +555,2020-05-16,0.00000000 +555,2020-05-17,0.00000000 +555,2020-05-18,0.00000000 +555,2020-05-19,0.00000000 +555,2020-05-20,6212.13590946 +555,2020-05-21,0.00000000 +555,2020-05-22,0.00000000 +555,2020-05-23,2453.98773006 +555,2020-05-24,0.00000000 +555,2020-05-25,0.00000000 +555,2020-05-26,0.00000000 +555,2020-05-27,0.00000000 +555,2020-05-28,0.00000000 +555,2020-05-29,0.00000000 +555,2020-05-30,0.00000000 +555,2020-05-31,0.00000000 +555,2020-06-01,3911.37275243 +555,2020-06-02,0.00000000 +555,2020-06-03,0.00000000 +555,2020-06-04,3913.12854627 +555,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_556_anosmia_ms.csv b/google_health/cache/Data_556_anosmia_ms.csv index b14deb584..9d3be2f99 100644 --- a/google_health/cache/Data_556_anosmia_ms.csv +++ b/google_health/cache/Data_556_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 556,2020-05-13,1189.00155989 556,2020-05-14,0.00000000 556,2020-05-15,0.00000000 +556,2020-05-16,1397.95418580 +556,2020-05-17,0.00000000 +556,2020-05-18,0.00000000 +556,2020-05-19,2349.72517609 +556,2020-05-20,0.00000000 +556,2020-05-21,1188.74524894 +556,2020-05-22,0.00000000 +556,2020-05-23,0.00000000 +556,2020-05-24,0.00000000 +556,2020-05-25,2721.45870186 +556,2020-05-26,0.00000000 +556,2020-05-27,0.00000000 +556,2020-05-28,0.00000000 +556,2020-05-29,1213.98687777 +556,2020-05-30,1399.38427092 +556,2020-05-31,0.00000000 +556,2020-06-01,0.00000000 +556,2020-06-02,0.00000000 +556,2020-06-03,0.00000000 +556,2020-06-04,0.00000000 +556,2020-06-05,2354.07927118 diff --git a/google_health/cache/Data_557_anosmia_ms.csv b/google_health/cache/Data_557_anosmia_ms.csv index 666473398..e98143d49 100644 --- a/google_health/cache/Data_557_anosmia_ms.csv +++ b/google_health/cache/Data_557_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 557,2020-05-13,0.00000000 557,2020-05-14,0.00000000 557,2020-05-15,1550.34225564 +557,2020-05-16,0.00000000 +557,2020-05-17,1729.80453209 +557,2020-05-18,0.00000000 +557,2020-05-19,0.00000000 +557,2020-05-20,0.00000000 +557,2020-05-21,4795.39641944 +557,2020-05-22,0.00000000 +557,2020-05-23,0.00000000 +557,2020-05-24,0.00000000 +557,2020-05-25,1656.17754223 +557,2020-05-26,0.00000000 +557,2020-05-27,0.00000000 +557,2020-05-28,1525.08769254 +557,2020-05-29,0.00000000 +557,2020-05-30,3447.08721131 +557,2020-05-31,0.00000000 +557,2020-06-01,0.00000000 +557,2020-06-02,0.00000000 +557,2020-06-03,0.00000000 +557,2020-06-04,0.00000000 +557,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_558_anosmia_ms.csv b/google_health/cache/Data_558_anosmia_ms.csv index 6e889ab45..a31da703d 100644 --- a/google_health/cache/Data_558_anosmia_ms.csv +++ b/google_health/cache/Data_558_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 558,2020-05-13,0.00000000 558,2020-05-14,0.00000000 558,2020-05-15,0.00000000 +558,2020-05-16,0.00000000 +558,2020-05-17,0.00000000 +558,2020-05-18,0.00000000 +558,2020-05-19,0.00000000 +558,2020-05-20,0.00000000 +558,2020-05-21,0.00000000 +558,2020-05-22,0.00000000 +558,2020-05-23,0.00000000 +558,2020-05-24,0.00000000 +558,2020-05-25,0.00000000 +558,2020-05-26,0.00000000 +558,2020-05-27,0.00000000 +558,2020-05-28,0.00000000 +558,2020-05-29,0.00000000 +558,2020-05-30,0.00000000 +558,2020-05-31,0.00000000 +558,2020-06-01,0.00000000 +558,2020-06-02,0.00000000 +558,2020-06-03,0.00000000 +558,2020-06-04,0.00000000 +558,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_559_anosmia_ms.csv b/google_health/cache/Data_559_anosmia_ms.csv index 16a7413ad..e2cbbfaa9 100644 --- a/google_health/cache/Data_559_anosmia_ms.csv +++ b/google_health/cache/Data_559_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 559,2020-05-13,0.00000000 559,2020-05-14,0.00000000 559,2020-05-15,0.00000000 +559,2020-05-16,0.00000000 +559,2020-05-17,0.00000000 +559,2020-05-18,0.00000000 +559,2020-05-19,0.00000000 +559,2020-05-20,0.00000000 +559,2020-05-21,0.00000000 +559,2020-05-22,0.00000000 +559,2020-05-23,0.00000000 +559,2020-05-24,0.00000000 +559,2020-05-25,0.00000000 +559,2020-05-26,0.00000000 +559,2020-05-27,0.00000000 +559,2020-05-28,0.00000000 +559,2020-05-29,0.00000000 +559,2020-05-30,0.00000000 +559,2020-05-31,0.00000000 +559,2020-06-01,0.00000000 +559,2020-06-02,0.00000000 +559,2020-06-03,0.00000000 +559,2020-06-04,0.00000000 +559,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_560_anosmia_ms.csv b/google_health/cache/Data_560_anosmia_ms.csv index 93407443e..d604b9864 100644 --- a/google_health/cache/Data_560_anosmia_ms.csv +++ b/google_health/cache/Data_560_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 560,2020-05-13,455.97850608 560,2020-05-14,450.02354372 560,2020-05-15,0.00000000 +560,2020-05-16,1080.38008168 +560,2020-05-17,539.53140123 +560,2020-05-18,901.64756910 +560,2020-05-19,0.00000000 +560,2020-05-20,447.34774237 +560,2020-05-21,452.16254739 +560,2020-05-22,0.00000000 +560,2020-05-23,535.63125034 +560,2020-05-24,0.00000000 +560,2020-05-25,0.00000000 +560,2020-05-26,1407.20657554 +560,2020-05-27,0.00000000 +560,2020-05-28,0.00000000 +560,2020-05-29,0.00000000 +560,2020-05-30,523.39933545 +560,2020-05-31,0.00000000 +560,2020-06-01,0.00000000 +560,2020-06-02,0.00000000 +560,2020-06-03,0.00000000 +560,2020-06-04,882.23548791 +560,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_561_anosmia_ms.csv b/google_health/cache/Data_561_anosmia_ms.csv index da2263482..fe17dad39 100644 --- a/google_health/cache/Data_561_anosmia_ms.csv +++ b/google_health/cache/Data_561_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 561,2020-05-13,0.00000000 561,2020-05-14,0.00000000 561,2020-05-15,0.00000000 +561,2020-05-16,1055.14644160 +561,2020-05-17,0.00000000 +561,2020-05-18,914.45438642 +561,2020-05-19,925.96686137 +561,2020-05-20,0.00000000 +561,2020-05-21,0.00000000 +561,2020-05-22,0.00000000 +561,2020-05-23,0.00000000 +561,2020-05-24,0.00000000 +561,2020-05-25,2053.04735274 +561,2020-05-26,913.48567544 +561,2020-05-27,0.00000000 +561,2020-05-28,0.00000000 +561,2020-05-29,972.67989140 +561,2020-05-30,0.00000000 +561,2020-05-31,0.00000000 +561,2020-06-01,0.00000000 +561,2020-06-02,0.00000000 +561,2020-06-03,0.00000000 +561,2020-06-04,916.53593099 +561,2020-06-05,937.96223264 diff --git a/google_health/cache/Data_563_anosmia_ms.csv b/google_health/cache/Data_563_anosmia_ms.csv index 7ad2387dd..fef8c8599 100644 --- a/google_health/cache/Data_563_anosmia_ms.csv +++ b/google_health/cache/Data_563_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 563,2020-05-13,0.00000000 563,2020-05-14,2604.93290979 563,2020-05-15,0.00000000 +563,2020-05-16,0.00000000 +563,2020-05-17,2967.62660953 +563,2020-05-18,0.00000000 +563,2020-05-19,911.05221381 +563,2020-05-20,921.82401655 +563,2020-05-21,0.00000000 +563,2020-05-22,1979.61325222 +563,2020-05-23,1175.06654391 +563,2020-05-24,0.00000000 +563,2020-05-25,1109.77812222 +563,2020-05-26,0.00000000 +563,2020-05-27,2737.79557434 +563,2020-05-28,0.00000000 +563,2020-05-29,0.00000000 +563,2020-05-30,0.00000000 +563,2020-05-31,0.00000000 +563,2020-06-01,0.00000000 +563,2020-06-02,954.32151984 +563,2020-06-03,0.00000000 +563,2020-06-04,0.00000000 +563,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_564_anosmia_ms.csv b/google_health/cache/Data_564_anosmia_ms.csv index 0fc0b0d32..3c96ad6ad 100644 --- a/google_health/cache/Data_564_anosmia_ms.csv +++ b/google_health/cache/Data_564_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 564,2020-05-13,0.00000000 564,2020-05-14,0.00000000 564,2020-05-15,0.00000000 +564,2020-05-16,0.00000000 +564,2020-05-17,0.00000000 +564,2020-05-18,0.00000000 +564,2020-05-19,0.00000000 +564,2020-05-20,0.00000000 +564,2020-05-21,0.00000000 +564,2020-05-22,2525.25252525 +564,2020-05-23,0.00000000 +564,2020-05-24,0.00000000 +564,2020-05-25,0.00000000 +564,2020-05-26,0.00000000 +564,2020-05-27,0.00000000 +564,2020-05-28,0.00000000 +564,2020-05-29,0.00000000 +564,2020-05-30,0.00000000 +564,2020-05-31,0.00000000 +564,2020-06-01,0.00000000 +564,2020-06-02,0.00000000 +564,2020-06-03,0.00000000 +564,2020-06-04,2492.52243270 +564,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_565_anosmia_ms.csv b/google_health/cache/Data_565_anosmia_ms.csv index 47611f7cb..c49de2ac7 100644 --- a/google_health/cache/Data_565_anosmia_ms.csv +++ b/google_health/cache/Data_565_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 565,2020-05-13,0.00000000 565,2020-05-14,0.00000000 565,2020-05-15,0.00000000 +565,2020-05-16,0.00000000 +565,2020-05-17,0.00000000 +565,2020-05-18,0.00000000 +565,2020-05-19,0.00000000 +565,2020-05-20,0.00000000 +565,2020-05-21,0.00000000 +565,2020-05-22,0.00000000 +565,2020-05-23,0.00000000 +565,2020-05-24,0.00000000 +565,2020-05-25,0.00000000 +565,2020-05-26,0.00000000 +565,2020-05-27,0.00000000 +565,2020-05-28,0.00000000 +565,2020-05-29,0.00000000 +565,2020-05-30,0.00000000 +565,2020-05-31,0.00000000 +565,2020-06-01,0.00000000 +565,2020-06-02,0.00000000 +565,2020-06-03,0.00000000 +565,2020-06-04,0.00000000 +565,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_566_anosmia_ms.csv b/google_health/cache/Data_566_anosmia_ms.csv index f3bafae29..5ba5ebea5 100644 --- a/google_health/cache/Data_566_anosmia_ms.csv +++ b/google_health/cache/Data_566_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 566,2020-05-13,998.63570290 566,2020-05-14,1941.35359898 566,2020-05-15,0.00000000 +566,2020-05-16,0.00000000 +566,2020-05-17,1108.95471461 +566,2020-05-18,987.86030539 +566,2020-05-19,0.00000000 +566,2020-05-20,988.36411740 +566,2020-05-21,0.00000000 +566,2020-05-22,965.66438151 +566,2020-05-23,0.00000000 +566,2020-05-24,0.00000000 +566,2020-05-25,0.00000000 +566,2020-05-26,0.00000000 +566,2020-05-27,2005.25894253 +566,2020-05-28,0.00000000 +566,2020-05-29,0.00000000 +566,2020-05-30,0.00000000 +566,2020-05-31,3577.50430615 +566,2020-06-01,0.00000000 +566,2020-06-02,0.00000000 +566,2020-06-03,958.89609487 +566,2020-06-04,0.00000000 +566,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_567_anosmia_ms.csv b/google_health/cache/Data_567_anosmia_ms.csv index 0c2ab8f78..5bc549dfe 100644 --- a/google_health/cache/Data_567_anosmia_ms.csv +++ b/google_health/cache/Data_567_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 567,2020-05-13,0.00000000 567,2020-05-14,0.00000000 567,2020-05-15,0.00000000 +567,2020-05-16,0.00000000 +567,2020-05-17,1037.15154983 +567,2020-05-18,1660.20925158 +567,2020-05-19,0.00000000 +567,2020-05-20,0.00000000 +567,2020-05-21,0.00000000 +567,2020-05-22,0.00000000 +567,2020-05-23,1029.95540319 +567,2020-05-24,0.00000000 +567,2020-05-25,0.00000000 +567,2020-05-26,871.73517015 +567,2020-05-27,0.00000000 +567,2020-05-28,0.00000000 +567,2020-05-29,0.00000000 +567,2020-05-30,0.00000000 +567,2020-05-31,0.00000000 +567,2020-06-01,916.48067185 +567,2020-06-02,0.00000000 +567,2020-06-03,0.00000000 +567,2020-06-04,0.00000000 +567,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_569_anosmia_ms.csv b/google_health/cache/Data_569_anosmia_ms.csv index e932a34b2..c331a16f9 100644 --- a/google_health/cache/Data_569_anosmia_ms.csv +++ b/google_health/cache/Data_569_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 569,2020-05-13,0.00000000 569,2020-05-14,0.00000000 569,2020-05-15,0.00000000 +569,2020-05-16,0.00000000 +569,2020-05-17,0.00000000 +569,2020-05-18,0.00000000 +569,2020-05-19,0.00000000 +569,2020-05-20,0.00000000 +569,2020-05-21,0.00000000 +569,2020-05-22,0.00000000 +569,2020-05-23,0.00000000 +569,2020-05-24,0.00000000 +569,2020-05-25,0.00000000 +569,2020-05-26,0.00000000 +569,2020-05-27,0.00000000 +569,2020-05-28,0.00000000 +569,2020-05-29,0.00000000 +569,2020-05-30,0.00000000 +569,2020-05-31,0.00000000 +569,2020-06-01,0.00000000 +569,2020-06-02,0.00000000 +569,2020-06-03,0.00000000 +569,2020-06-04,0.00000000 +569,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_570_anosmia_ms.csv b/google_health/cache/Data_570_anosmia_ms.csv index 359e7de4e..b16569adf 100644 --- a/google_health/cache/Data_570_anosmia_ms.csv +++ b/google_health/cache/Data_570_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 570,2020-05-13,0.00000000 570,2020-05-14,0.00000000 570,2020-05-15,2674.51190158 +570,2020-05-16,0.00000000 +570,2020-05-17,0.00000000 +570,2020-05-18,0.00000000 +570,2020-05-19,0.00000000 +570,2020-05-20,2467.91707799 +570,2020-05-21,0.00000000 +570,2020-05-22,0.00000000 +570,2020-05-23,0.00000000 +570,2020-05-24,0.00000000 +570,2020-05-25,0.00000000 +570,2020-05-26,0.00000000 +570,2020-05-27,0.00000000 +570,2020-05-28,0.00000000 +570,2020-05-29,0.00000000 +570,2020-05-30,0.00000000 +570,2020-05-31,0.00000000 +570,2020-06-01,0.00000000 +570,2020-06-02,0.00000000 +570,2020-06-03,0.00000000 +570,2020-06-04,0.00000000 +570,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_571_anosmia_ms.csv b/google_health/cache/Data_571_anosmia_ms.csv index e5798ad12..a50d3b986 100644 --- a/google_health/cache/Data_571_anosmia_ms.csv +++ b/google_health/cache/Data_571_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 571,2020-05-13,1409.47931867 571,2020-05-14,0.00000000 571,2020-05-15,2789.05105582 +571,2020-05-16,0.00000000 +571,2020-05-17,0.00000000 +571,2020-05-18,1365.93361563 +571,2020-05-19,0.00000000 +571,2020-05-20,0.00000000 +571,2020-05-21,0.00000000 +571,2020-05-22,0.00000000 +571,2020-05-23,0.00000000 +571,2020-05-24,0.00000000 +571,2020-05-25,0.00000000 +571,2020-05-26,0.00000000 +571,2020-05-27,1432.85506700 +571,2020-05-28,0.00000000 +571,2020-05-29,4493.56141326 +571,2020-05-30,0.00000000 +571,2020-05-31,0.00000000 +571,2020-06-01,1486.32580262 +571,2020-06-02,0.00000000 +571,2020-06-03,0.00000000 +571,2020-06-04,2805.63242708 +571,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_573_anosmia_ms.csv b/google_health/cache/Data_573_anosmia_ms.csv index 0ada2b9ac..9e6cb38cb 100644 --- a/google_health/cache/Data_573_anosmia_ms.csv +++ b/google_health/cache/Data_573_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 573,2020-05-13,0.00000000 573,2020-05-14,0.00000000 573,2020-05-15,0.00000000 +573,2020-05-16,0.00000000 +573,2020-05-17,0.00000000 +573,2020-05-18,0.00000000 +573,2020-05-19,0.00000000 +573,2020-05-20,0.00000000 +573,2020-05-21,0.00000000 +573,2020-05-22,0.00000000 +573,2020-05-23,0.00000000 +573,2020-05-24,0.00000000 +573,2020-05-25,0.00000000 +573,2020-05-26,0.00000000 +573,2020-05-27,0.00000000 +573,2020-05-28,0.00000000 +573,2020-05-29,0.00000000 +573,2020-05-30,0.00000000 +573,2020-05-31,0.00000000 +573,2020-06-01,0.00000000 +573,2020-06-02,0.00000000 +573,2020-06-03,1791.15171055 +573,2020-06-04,0.00000000 +573,2020-06-05,3542.33085370 diff --git a/google_health/cache/Data_574_anosmia_ms.csv b/google_health/cache/Data_574_anosmia_ms.csv index 88be1c060..232b3363e 100644 --- a/google_health/cache/Data_574_anosmia_ms.csv +++ b/google_health/cache/Data_574_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 574,2020-05-13,0.00000000 574,2020-05-14,0.00000000 574,2020-05-15,0.00000000 +574,2020-05-16,0.00000000 +574,2020-05-17,0.00000000 +574,2020-05-18,0.00000000 +574,2020-05-19,0.00000000 +574,2020-05-20,0.00000000 +574,2020-05-21,0.00000000 +574,2020-05-22,0.00000000 +574,2020-05-23,0.00000000 +574,2020-05-24,0.00000000 +574,2020-05-25,0.00000000 +574,2020-05-26,0.00000000 +574,2020-05-27,0.00000000 +574,2020-05-28,0.00000000 +574,2020-05-29,0.00000000 +574,2020-05-30,0.00000000 +574,2020-05-31,3402.51786322 +574,2020-06-01,0.00000000 +574,2020-06-02,0.00000000 +574,2020-06-03,2771.61862528 +574,2020-06-04,0.00000000 +574,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_575_anosmia_ms.csv b/google_health/cache/Data_575_anosmia_ms.csv index ead75eeb9..59a69db79 100644 --- a/google_health/cache/Data_575_anosmia_ms.csv +++ b/google_health/cache/Data_575_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 575,2020-05-13,0.00000000 575,2020-05-14,0.00000000 575,2020-05-15,0.00000000 +575,2020-05-16,0.00000000 +575,2020-05-17,0.00000000 +575,2020-05-18,0.00000000 +575,2020-05-19,0.00000000 +575,2020-05-20,0.00000000 +575,2020-05-21,0.00000000 +575,2020-05-22,2209.45647371 +575,2020-05-23,0.00000000 +575,2020-05-24,0.00000000 +575,2020-05-25,0.00000000 +575,2020-05-26,0.00000000 +575,2020-05-27,0.00000000 +575,2020-05-28,0.00000000 +575,2020-05-29,0.00000000 +575,2020-05-30,5296.61016949 +575,2020-05-31,7884.26129565 +575,2020-06-01,0.00000000 +575,2020-06-02,0.00000000 +575,2020-06-03,0.00000000 +575,2020-06-04,0.00000000 +575,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_576_anosmia_ms.csv b/google_health/cache/Data_576_anosmia_ms.csv index 997316f75..42cee3645 100644 --- a/google_health/cache/Data_576_anosmia_ms.csv +++ b/google_health/cache/Data_576_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 576,2020-05-13,0.00000000 576,2020-05-14,0.00000000 576,2020-05-15,0.00000000 +576,2020-05-16,0.00000000 +576,2020-05-17,0.00000000 +576,2020-05-18,0.00000000 +576,2020-05-19,0.00000000 +576,2020-05-20,0.00000000 +576,2020-05-21,0.00000000 +576,2020-05-22,0.00000000 +576,2020-05-23,0.00000000 +576,2020-05-24,0.00000000 +576,2020-05-25,0.00000000 +576,2020-05-26,0.00000000 +576,2020-05-27,0.00000000 +576,2020-05-28,0.00000000 +576,2020-05-29,4472.27191413 +576,2020-05-30,0.00000000 +576,2020-05-31,0.00000000 +576,2020-06-01,0.00000000 +576,2020-06-02,0.00000000 +576,2020-06-03,0.00000000 +576,2020-06-04,0.00000000 +576,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_577_anosmia_ms.csv b/google_health/cache/Data_577_anosmia_ms.csv index d110ff2ff..667d75bda 100644 --- a/google_health/cache/Data_577_anosmia_ms.csv +++ b/google_health/cache/Data_577_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 577,2020-05-13,0.00000000 577,2020-05-14,0.00000000 577,2020-05-15,0.00000000 +577,2020-05-16,0.00000000 +577,2020-05-17,0.00000000 +577,2020-05-18,0.00000000 +577,2020-05-19,1478.37590244 +577,2020-05-20,0.00000000 +577,2020-05-21,3139.22461152 +577,2020-05-22,0.00000000 +577,2020-05-23,0.00000000 +577,2020-05-24,0.00000000 +577,2020-05-25,0.00000000 +577,2020-05-26,0.00000000 +577,2020-05-27,2990.43062201 +577,2020-05-28,0.00000000 +577,2020-05-29,2915.40226337 +577,2020-05-30,0.00000000 +577,2020-05-31,1666.66666667 +577,2020-06-01,0.00000000 +577,2020-06-02,0.00000000 +577,2020-06-03,0.00000000 +577,2020-06-04,2851.94692612 +577,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_581_anosmia_ms.csv b/google_health/cache/Data_581_anosmia_ms.csv index 4eaeb863c..838584be5 100644 --- a/google_health/cache/Data_581_anosmia_ms.csv +++ b/google_health/cache/Data_581_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 581,2020-05-13,0.00000000 581,2020-05-14,0.00000000 581,2020-05-15,0.00000000 +581,2020-05-16,0.00000000 +581,2020-05-17,0.00000000 +581,2020-05-18,0.00000000 +581,2020-05-19,0.00000000 +581,2020-05-20,0.00000000 +581,2020-05-21,0.00000000 +581,2020-05-22,0.00000000 +581,2020-05-23,0.00000000 +581,2020-05-24,0.00000000 +581,2020-05-25,0.00000000 +581,2020-05-26,0.00000000 +581,2020-05-27,0.00000000 +581,2020-05-28,0.00000000 +581,2020-05-29,0.00000000 +581,2020-05-30,0.00000000 +581,2020-05-31,0.00000000 +581,2020-06-01,0.00000000 +581,2020-06-02,0.00000000 +581,2020-06-03,0.00000000 +581,2020-06-04,0.00000000 +581,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_582_anosmia_ms.csv b/google_health/cache/Data_582_anosmia_ms.csv index 1c166cf5a..3fc43e1c1 100644 --- a/google_health/cache/Data_582_anosmia_ms.csv +++ b/google_health/cache/Data_582_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 582,2020-05-13,0.00000000 582,2020-05-14,0.00000000 582,2020-05-15,0.00000000 +582,2020-05-16,0.00000000 +582,2020-05-17,0.00000000 +582,2020-05-18,0.00000000 +582,2020-05-19,0.00000000 +582,2020-05-20,0.00000000 +582,2020-05-21,0.00000000 +582,2020-05-22,0.00000000 +582,2020-05-23,0.00000000 +582,2020-05-24,0.00000000 +582,2020-05-25,0.00000000 +582,2020-05-26,0.00000000 +582,2020-05-27,0.00000000 +582,2020-05-28,0.00000000 +582,2020-05-29,0.00000000 +582,2020-05-30,0.00000000 +582,2020-05-31,0.00000000 +582,2020-06-01,0.00000000 +582,2020-06-02,0.00000000 +582,2020-06-03,0.00000000 +582,2020-06-04,0.00000000 +582,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_583_anosmia_ms.csv b/google_health/cache/Data_583_anosmia_ms.csv index b299d65f0..d6e2f0ba8 100644 --- a/google_health/cache/Data_583_anosmia_ms.csv +++ b/google_health/cache/Data_583_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 583,2020-05-13,0.00000000 583,2020-05-14,0.00000000 583,2020-05-15,0.00000000 +583,2020-05-16,0.00000000 +583,2020-05-17,0.00000000 +583,2020-05-18,0.00000000 +583,2020-05-19,0.00000000 +583,2020-05-20,0.00000000 +583,2020-05-21,0.00000000 +583,2020-05-22,0.00000000 +583,2020-05-23,0.00000000 +583,2020-05-24,0.00000000 +583,2020-05-25,0.00000000 +583,2020-05-26,0.00000000 +583,2020-05-27,0.00000000 +583,2020-05-28,0.00000000 +583,2020-05-29,0.00000000 +583,2020-05-30,0.00000000 +583,2020-05-31,0.00000000 +583,2020-06-01,0.00000000 +583,2020-06-02,0.00000000 +583,2020-06-03,0.00000000 +583,2020-06-04,0.00000000 +583,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_584_anosmia_ms.csv b/google_health/cache/Data_584_anosmia_ms.csv index ae2ce0bdf..6ebfcc5c5 100644 --- a/google_health/cache/Data_584_anosmia_ms.csv +++ b/google_health/cache/Data_584_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 584,2020-05-13,0.00000000 584,2020-05-14,0.00000000 584,2020-05-15,0.00000000 +584,2020-05-16,0.00000000 +584,2020-05-17,0.00000000 +584,2020-05-18,0.00000000 +584,2020-05-19,0.00000000 +584,2020-05-20,0.00000000 +584,2020-05-21,0.00000000 +584,2020-05-22,0.00000000 +584,2020-05-23,0.00000000 +584,2020-05-24,0.00000000 +584,2020-05-25,0.00000000 +584,2020-05-26,0.00000000 +584,2020-05-27,0.00000000 +584,2020-05-28,0.00000000 +584,2020-05-29,24958.40266223 +584,2020-05-30,0.00000000 +584,2020-05-31,0.00000000 +584,2020-06-01,0.00000000 +584,2020-06-02,0.00000000 +584,2020-06-03,0.00000000 +584,2020-06-04,0.00000000 +584,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_588_anosmia_ms.csv b/google_health/cache/Data_588_anosmia_ms.csv index 33c41de4b..c851c1876 100644 --- a/google_health/cache/Data_588_anosmia_ms.csv +++ b/google_health/cache/Data_588_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 588,2020-05-13,2491.90132071 588,2020-05-14,0.00000000 588,2020-05-15,0.00000000 +588,2020-05-16,0.00000000 +588,2020-05-17,0.00000000 +588,2020-05-18,0.00000000 +588,2020-05-19,0.00000000 +588,2020-05-20,0.00000000 +588,2020-05-21,0.00000000 +588,2020-05-22,0.00000000 +588,2020-05-23,0.00000000 +588,2020-05-24,0.00000000 +588,2020-05-25,0.00000000 +588,2020-05-26,0.00000000 +588,2020-05-27,0.00000000 +588,2020-05-28,0.00000000 +588,2020-05-29,0.00000000 +588,2020-05-30,0.00000000 +588,2020-05-31,0.00000000 +588,2020-06-01,0.00000000 +588,2020-06-02,0.00000000 +588,2020-06-03,0.00000000 +588,2020-06-04,0.00000000 +588,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_592_anosmia_ms.csv b/google_health/cache/Data_592_anosmia_ms.csv index 1f4c58a2f..c0d547d43 100644 --- a/google_health/cache/Data_592_anosmia_ms.csv +++ b/google_health/cache/Data_592_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 592,2020-05-13,0.00000000 592,2020-05-14,0.00000000 592,2020-05-15,0.00000000 +592,2020-05-16,0.00000000 +592,2020-05-17,0.00000000 +592,2020-05-18,0.00000000 +592,2020-05-19,0.00000000 +592,2020-05-20,0.00000000 +592,2020-05-21,5040.32258065 +592,2020-05-22,0.00000000 +592,2020-05-23,0.00000000 +592,2020-05-24,0.00000000 +592,2020-05-25,0.00000000 +592,2020-05-26,0.00000000 +592,2020-05-27,0.00000000 +592,2020-05-28,0.00000000 +592,2020-05-29,0.00000000 +592,2020-05-30,0.00000000 +592,2020-05-31,6056.93519079 +592,2020-06-01,0.00000000 +592,2020-06-02,0.00000000 +592,2020-06-03,0.00000000 +592,2020-06-04,0.00000000 +592,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_596_anosmia_ms.csv b/google_health/cache/Data_596_anosmia_ms.csv index 6aca36ebb..2cc515bc6 100644 --- a/google_health/cache/Data_596_anosmia_ms.csv +++ b/google_health/cache/Data_596_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 596,2020-05-13,0.00000000 596,2020-05-14,0.00000000 596,2020-05-15,0.00000000 +596,2020-05-16,0.00000000 +596,2020-05-17,0.00000000 +596,2020-05-18,0.00000000 +596,2020-05-19,0.00000000 +596,2020-05-20,0.00000000 +596,2020-05-21,0.00000000 +596,2020-05-22,0.00000000 +596,2020-05-23,0.00000000 +596,2020-05-24,0.00000000 +596,2020-05-25,0.00000000 +596,2020-05-26,0.00000000 +596,2020-05-27,0.00000000 +596,2020-05-28,0.00000000 +596,2020-05-29,0.00000000 +596,2020-05-30,0.00000000 +596,2020-05-31,0.00000000 +596,2020-06-01,0.00000000 +596,2020-06-02,0.00000000 +596,2020-06-03,0.00000000 +596,2020-06-04,0.00000000 +596,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_597_anosmia_ms.csv b/google_health/cache/Data_597_anosmia_ms.csv index 6a3997235..3aea4ae02 100644 --- a/google_health/cache/Data_597_anosmia_ms.csv +++ b/google_health/cache/Data_597_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 597,2020-05-13,0.00000000 597,2020-05-14,0.00000000 597,2020-05-15,0.00000000 +597,2020-05-16,0.00000000 +597,2020-05-17,0.00000000 +597,2020-05-18,0.00000000 +597,2020-05-19,0.00000000 +597,2020-05-20,0.00000000 +597,2020-05-21,0.00000000 +597,2020-05-22,0.00000000 +597,2020-05-23,0.00000000 +597,2020-05-24,0.00000000 +597,2020-05-25,0.00000000 +597,2020-05-26,0.00000000 +597,2020-05-27,0.00000000 +597,2020-05-28,0.00000000 +597,2020-05-29,0.00000000 +597,2020-05-30,0.00000000 +597,2020-05-31,0.00000000 +597,2020-06-01,0.00000000 +597,2020-06-02,0.00000000 +597,2020-06-03,0.00000000 +597,2020-06-04,0.00000000 +597,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_598_anosmia_ms.csv b/google_health/cache/Data_598_anosmia_ms.csv index 5af32cd4b..660caa131 100644 --- a/google_health/cache/Data_598_anosmia_ms.csv +++ b/google_health/cache/Data_598_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 598,2020-05-13,0.00000000 598,2020-05-14,0.00000000 598,2020-05-15,0.00000000 +598,2020-05-16,0.00000000 +598,2020-05-17,0.00000000 +598,2020-05-18,0.00000000 +598,2020-05-19,0.00000000 +598,2020-05-20,0.00000000 +598,2020-05-21,0.00000000 +598,2020-05-22,0.00000000 +598,2020-05-23,0.00000000 +598,2020-05-24,0.00000000 +598,2020-05-25,0.00000000 +598,2020-05-26,0.00000000 +598,2020-05-27,0.00000000 +598,2020-05-28,0.00000000 +598,2020-05-29,0.00000000 +598,2020-05-30,0.00000000 +598,2020-05-31,0.00000000 +598,2020-06-01,0.00000000 +598,2020-06-02,0.00000000 +598,2020-06-03,0.00000000 +598,2020-06-04,0.00000000 +598,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_600_anosmia_ms.csv b/google_health/cache/Data_600_anosmia_ms.csv index 225249ea6..141d5de7d 100644 --- a/google_health/cache/Data_600_anosmia_ms.csv +++ b/google_health/cache/Data_600_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 600,2020-05-13,0.00000000 600,2020-05-14,0.00000000 600,2020-05-15,7074.63742483 +600,2020-05-16,0.00000000 +600,2020-05-17,0.00000000 +600,2020-05-18,0.00000000 +600,2020-05-19,0.00000000 +600,2020-05-20,0.00000000 +600,2020-05-21,0.00000000 +600,2020-05-22,0.00000000 +600,2020-05-23,0.00000000 +600,2020-05-24,0.00000000 +600,2020-05-25,0.00000000 +600,2020-05-26,0.00000000 +600,2020-05-27,0.00000000 +600,2020-05-28,0.00000000 +600,2020-05-29,0.00000000 +600,2020-05-30,0.00000000 +600,2020-05-31,0.00000000 +600,2020-06-01,0.00000000 +600,2020-06-02,0.00000000 +600,2020-06-03,0.00000000 +600,2020-06-04,0.00000000 +600,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_602_anosmia_ms.csv b/google_health/cache/Data_602_anosmia_ms.csv index 13e3df840..3cc4bb963 100644 --- a/google_health/cache/Data_602_anosmia_ms.csv +++ b/google_health/cache/Data_602_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 602,2020-05-13,846.88198038 602,2020-05-14,515.33579636 602,2020-05-15,745.53948652 +602,2020-05-16,542.24639914 +602,2020-05-17,512.49671308 +602,2020-05-18,1011.05848310 +602,2020-05-19,450.65646149 +602,2020-05-20,612.96681996 +602,2020-05-21,552.85016782 +602,2020-05-22,651.73462148 +602,2020-05-23,553.05458239 +602,2020-05-24,479.40112211 +602,2020-05-25,378.35152374 +602,2020-05-26,481.79805730 +602,2020-05-27,316.56618673 +602,2020-05-28,599.29137746 +602,2020-05-29,487.92901572 +602,2020-05-30,558.50820870 +602,2020-05-31,557.90664822 +602,2020-06-01,314.76215898 +602,2020-06-02,1127.48934559 +602,2020-06-03,909.65004043 +602,2020-06-04,303.75623242 +602,2020-06-05,626.09478649 diff --git a/google_health/cache/Data_603_anosmia_ms.csv b/google_health/cache/Data_603_anosmia_ms.csv index e43a996e4..20e0c8aad 100644 --- a/google_health/cache/Data_603_anosmia_ms.csv +++ b/google_health/cache/Data_603_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 603,2020-05-13,0.00000000 603,2020-05-14,0.00000000 603,2020-05-15,0.00000000 +603,2020-05-16,0.00000000 +603,2020-05-17,0.00000000 +603,2020-05-18,0.00000000 +603,2020-05-19,0.00000000 +603,2020-05-20,0.00000000 +603,2020-05-21,0.00000000 +603,2020-05-22,0.00000000 +603,2020-05-23,0.00000000 +603,2020-05-24,0.00000000 +603,2020-05-25,0.00000000 +603,2020-05-26,0.00000000 +603,2020-05-27,0.00000000 +603,2020-05-28,0.00000000 +603,2020-05-29,0.00000000 +603,2020-05-30,0.00000000 +603,2020-05-31,0.00000000 +603,2020-06-01,0.00000000 +603,2020-06-02,0.00000000 +603,2020-06-03,0.00000000 +603,2020-06-04,0.00000000 +603,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_604_anosmia_ms.csv b/google_health/cache/Data_604_anosmia_ms.csv index 7558cbfbd..77688cde3 100644 --- a/google_health/cache/Data_604_anosmia_ms.csv +++ b/google_health/cache/Data_604_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 604,2020-05-13,0.00000000 604,2020-05-14,0.00000000 604,2020-05-15,0.00000000 +604,2020-05-16,0.00000000 +604,2020-05-17,0.00000000 +604,2020-05-18,0.00000000 +604,2020-05-19,0.00000000 +604,2020-05-20,0.00000000 +604,2020-05-21,0.00000000 +604,2020-05-22,0.00000000 +604,2020-05-23,0.00000000 +604,2020-05-24,0.00000000 +604,2020-05-25,0.00000000 +604,2020-05-26,15075.37688442 +604,2020-05-27,0.00000000 +604,2020-05-28,0.00000000 +604,2020-05-29,0.00000000 +604,2020-05-30,0.00000000 +604,2020-05-31,0.00000000 +604,2020-06-01,0.00000000 +604,2020-06-02,0.00000000 +604,2020-06-03,4861.44871172 +604,2020-06-04,0.00000000 +604,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_605_anosmia_ms.csv b/google_health/cache/Data_605_anosmia_ms.csv index 0a0a0c2cd..dfe1cb0b9 100644 --- a/google_health/cache/Data_605_anosmia_ms.csv +++ b/google_health/cache/Data_605_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 605,2020-05-13,0.00000000 605,2020-05-14,0.00000000 605,2020-05-15,0.00000000 +605,2020-05-16,0.00000000 +605,2020-05-17,0.00000000 +605,2020-05-18,0.00000000 +605,2020-05-19,0.00000000 +605,2020-05-20,0.00000000 +605,2020-05-21,0.00000000 +605,2020-05-22,0.00000000 +605,2020-05-23,0.00000000 +605,2020-05-24,0.00000000 +605,2020-05-25,0.00000000 +605,2020-05-26,0.00000000 +605,2020-05-27,0.00000000 +605,2020-05-28,0.00000000 +605,2020-05-29,0.00000000 +605,2020-05-30,0.00000000 +605,2020-05-31,0.00000000 +605,2020-06-01,0.00000000 +605,2020-06-02,0.00000000 +605,2020-06-03,5007.51126690 +605,2020-06-04,0.00000000 +605,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_606_anosmia_ms.csv b/google_health/cache/Data_606_anosmia_ms.csv index 24d0d6afd..34c579e58 100644 --- a/google_health/cache/Data_606_anosmia_ms.csv +++ b/google_health/cache/Data_606_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 606,2020-05-13,0.00000000 606,2020-05-14,0.00000000 606,2020-05-15,0.00000000 +606,2020-05-16,0.00000000 +606,2020-05-17,0.00000000 +606,2020-05-18,0.00000000 +606,2020-05-19,0.00000000 +606,2020-05-20,0.00000000 +606,2020-05-21,0.00000000 +606,2020-05-22,0.00000000 +606,2020-05-23,0.00000000 +606,2020-05-24,0.00000000 +606,2020-05-25,0.00000000 +606,2020-05-26,0.00000000 +606,2020-05-27,0.00000000 +606,2020-05-28,0.00000000 +606,2020-05-29,0.00000000 +606,2020-05-30,0.00000000 +606,2020-05-31,0.00000000 +606,2020-06-01,0.00000000 +606,2020-06-02,0.00000000 +606,2020-06-03,0.00000000 +606,2020-06-04,0.00000000 +606,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_609_anosmia_ms.csv b/google_health/cache/Data_609_anosmia_ms.csv index edc03c351..5e6b034d3 100644 --- a/google_health/cache/Data_609_anosmia_ms.csv +++ b/google_health/cache/Data_609_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 609,2020-05-13,518.25299830 609,2020-05-14,0.00000000 609,2020-05-15,0.00000000 +609,2020-05-16,0.00000000 +609,2020-05-17,0.00000000 +609,2020-05-18,1079.72063816 +609,2020-05-19,537.32082636 +609,2020-05-20,0.00000000 +609,2020-05-21,0.00000000 +609,2020-05-22,1732.62750101 +609,2020-05-23,0.00000000 +609,2020-05-24,679.15583289 +609,2020-05-25,0.00000000 +609,2020-05-26,0.00000000 +609,2020-05-27,543.84622047 +609,2020-05-28,562.14439836 +609,2020-05-29,0.00000000 +609,2020-05-30,1358.04572578 +609,2020-05-31,0.00000000 +609,2020-06-01,0.00000000 +609,2020-06-02,570.52934589 +609,2020-06-03,542.33187143 +609,2020-06-04,0.00000000 +609,2020-06-05,558.93210069 diff --git a/google_health/cache/Data_610_anosmia_ms.csv b/google_health/cache/Data_610_anosmia_ms.csv index 868b70325..7ad4e3456 100644 --- a/google_health/cache/Data_610_anosmia_ms.csv +++ b/google_health/cache/Data_610_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 610,2020-05-13,0.00000000 610,2020-05-14,0.00000000 610,2020-05-15,0.00000000 +610,2020-05-16,0.00000000 +610,2020-05-17,0.00000000 +610,2020-05-18,4093.32787556 +610,2020-05-19,12719.27621555 +610,2020-05-20,0.00000000 +610,2020-05-21,0.00000000 +610,2020-05-22,13805.79843534 +610,2020-05-23,0.00000000 +610,2020-05-24,0.00000000 +610,2020-05-25,0.00000000 +610,2020-05-26,0.00000000 +610,2020-05-27,0.00000000 +610,2020-05-28,0.00000000 +610,2020-05-29,0.00000000 +610,2020-05-30,0.00000000 +610,2020-05-31,0.00000000 +610,2020-06-01,0.00000000 +610,2020-06-02,0.00000000 +610,2020-06-03,0.00000000 +610,2020-06-04,0.00000000 +610,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_611_anosmia_ms.csv b/google_health/cache/Data_611_anosmia_ms.csv index 5e5f0e04f..7657c101a 100644 --- a/google_health/cache/Data_611_anosmia_ms.csv +++ b/google_health/cache/Data_611_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 611,2020-05-13,0.00000000 611,2020-05-14,0.00000000 611,2020-05-15,0.00000000 +611,2020-05-16,0.00000000 +611,2020-05-17,0.00000000 +611,2020-05-18,0.00000000 +611,2020-05-19,0.00000000 +611,2020-05-20,5373.45513165 +611,2020-05-21,0.00000000 +611,2020-05-22,0.00000000 +611,2020-05-23,0.00000000 +611,2020-05-24,0.00000000 +611,2020-05-25,0.00000000 +611,2020-05-26,0.00000000 +611,2020-05-27,0.00000000 +611,2020-05-28,0.00000000 +611,2020-05-29,0.00000000 +611,2020-05-30,0.00000000 +611,2020-05-31,0.00000000 +611,2020-06-01,0.00000000 +611,2020-06-02,0.00000000 +611,2020-06-03,0.00000000 +611,2020-06-04,0.00000000 +611,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_612_anosmia_ms.csv b/google_health/cache/Data_612_anosmia_ms.csv index 029da7be0..ea32b93f6 100644 --- a/google_health/cache/Data_612_anosmia_ms.csv +++ b/google_health/cache/Data_612_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 612,2020-05-13,0.00000000 612,2020-05-14,0.00000000 612,2020-05-15,0.00000000 +612,2020-05-16,0.00000000 +612,2020-05-17,0.00000000 +612,2020-05-18,0.00000000 +612,2020-05-19,0.00000000 +612,2020-05-20,0.00000000 +612,2020-05-21,0.00000000 +612,2020-05-22,0.00000000 +612,2020-05-23,0.00000000 +612,2020-05-24,3032.14069133 +612,2020-05-25,2938.58360270 +612,2020-05-26,2773.92510402 +612,2020-05-27,0.00000000 +612,2020-05-28,0.00000000 +612,2020-05-29,0.00000000 +612,2020-05-30,0.00000000 +612,2020-05-31,0.00000000 +612,2020-06-01,0.00000000 +612,2020-06-02,0.00000000 +612,2020-06-03,0.00000000 +612,2020-06-04,0.00000000 +612,2020-06-05,8326.39467111 diff --git a/google_health/cache/Data_613_anosmia_ms.csv b/google_health/cache/Data_613_anosmia_ms.csv index 01ad5d018..ecb0878c6 100644 --- a/google_health/cache/Data_613_anosmia_ms.csv +++ b/google_health/cache/Data_613_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 613,2020-05-13,326.96101101 613,2020-05-14,0.00000000 613,2020-05-15,362.81471695 +613,2020-05-16,0.00000000 +613,2020-05-17,1140.88069307 +613,2020-05-18,674.78312869 +613,2020-05-19,867.22408417 +613,2020-05-20,351.73582440 +613,2020-05-21,0.00000000 +613,2020-05-22,727.77988674 +613,2020-05-23,424.63680201 +613,2020-05-24,0.00000000 +613,2020-05-25,0.00000000 +613,2020-05-26,1027.26537441 +613,2020-05-27,685.68945488 +613,2020-05-28,695.43514578 +613,2020-05-29,0.00000000 +613,2020-05-30,0.00000000 +613,2020-05-31,854.04021241 +613,2020-06-01,0.00000000 +613,2020-06-02,349.87057233 +613,2020-06-03,347.13131482 +613,2020-06-04,0.00000000 +613,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_616_anosmia_ms.csv b/google_health/cache/Data_616_anosmia_ms.csv index 39b63aff2..5260ee6b8 100644 --- a/google_health/cache/Data_616_anosmia_ms.csv +++ b/google_health/cache/Data_616_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 616,2020-05-13,0.00000000 616,2020-05-14,671.76827611 616,2020-05-15,1370.86019306 +616,2020-05-16,0.00000000 +616,2020-05-17,1642.49091266 +616,2020-05-18,700.35516823 +616,2020-05-19,0.00000000 +616,2020-05-20,1421.79752207 +616,2020-05-21,0.00000000 +616,2020-05-22,0.00000000 +616,2020-05-23,0.00000000 +616,2020-05-24,0.00000000 +616,2020-05-25,0.00000000 +616,2020-05-26,0.00000000 +616,2020-05-27,739.96116369 +616,2020-05-28,0.00000000 +616,2020-05-29,763.59151036 +616,2020-05-30,1701.52213681 +616,2020-05-31,0.00000000 +616,2020-06-01,1516.43566785 +616,2020-06-02,0.00000000 +616,2020-06-03,0.00000000 +616,2020-06-04,0.00000000 +616,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_617_anosmia_ms.csv b/google_health/cache/Data_617_anosmia_ms.csv index d5e974d19..02010dc69 100644 --- a/google_health/cache/Data_617_anosmia_ms.csv +++ b/google_health/cache/Data_617_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 617,2020-05-13,679.48520582 617,2020-05-14,0.00000000 617,2020-05-15,0.00000000 +617,2020-05-16,0.00000000 +617,2020-05-17,2264.70727098 +617,2020-05-18,670.34687447 +617,2020-05-19,669.62434608 +617,2020-05-20,0.00000000 +617,2020-05-21,716.71312249 +617,2020-05-22,736.46193352 +617,2020-05-23,3277.69536030 +617,2020-05-24,1722.75728522 +617,2020-05-25,0.00000000 +617,2020-05-26,701.21042945 +617,2020-05-27,2097.20726371 +617,2020-05-28,0.00000000 +617,2020-05-29,712.26758999 +617,2020-05-30,0.00000000 +617,2020-05-31,0.00000000 +617,2020-06-01,0.00000000 +617,2020-06-02,0.00000000 +617,2020-06-03,0.00000000 +617,2020-06-04,685.08780579 +617,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_618_anosmia_ms.csv b/google_health/cache/Data_618_anosmia_ms.csv index 81398e60d..0c142ee77 100644 --- a/google_health/cache/Data_618_anosmia_ms.csv +++ b/google_health/cache/Data_618_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 618,2020-05-13,0.00000000 618,2020-05-14,434.67195832 618,2020-05-15,439.25301604 +618,2020-05-16,1252.00727052 +618,2020-05-17,258.93431390 +618,2020-05-18,670.41906240 +618,2020-05-19,449.50015171 +618,2020-05-20,671.12305862 +618,2020-05-21,444.56707711 +618,2020-05-22,691.12931692 +618,2020-05-23,923.77141247 +618,2020-05-24,0.00000000 +618,2020-05-25,767.26839102 +618,2020-05-26,0.00000000 +618,2020-05-27,457.44068474 +618,2020-05-28,457.09522927 +618,2020-05-29,473.91249486 +618,2020-05-30,796.11233135 +618,2020-05-31,529.52125787 +618,2020-06-01,461.80094761 +618,2020-06-02,474.43500472 +618,2020-06-03,224.01915138 +618,2020-06-04,676.93171656 +618,2020-06-05,1227.03672066 diff --git a/google_health/cache/Data_619_anosmia_ms.csv b/google_health/cache/Data_619_anosmia_ms.csv index 56d5a65b6..f66c74134 100644 --- a/google_health/cache/Data_619_anosmia_ms.csv +++ b/google_health/cache/Data_619_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 619,2020-05-13,0.00000000 619,2020-05-14,0.00000000 619,2020-05-15,0.00000000 +619,2020-05-16,0.00000000 +619,2020-05-17,2359.60358660 +619,2020-05-18,2156.56674574 +619,2020-05-19,0.00000000 +619,2020-05-20,0.00000000 +619,2020-05-21,0.00000000 +619,2020-05-22,0.00000000 +619,2020-05-23,2428.36328315 +619,2020-05-24,0.00000000 +619,2020-05-25,0.00000000 +619,2020-05-26,0.00000000 +619,2020-05-27,0.00000000 +619,2020-05-28,0.00000000 +619,2020-05-29,0.00000000 +619,2020-05-30,0.00000000 +619,2020-05-31,0.00000000 +619,2020-06-01,0.00000000 +619,2020-06-02,0.00000000 +619,2020-06-03,0.00000000 +619,2020-06-04,0.00000000 +619,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_622_anosmia_ms.csv b/google_health/cache/Data_622_anosmia_ms.csv index d2e7b84b1..697b909de 100644 --- a/google_health/cache/Data_622_anosmia_ms.csv +++ b/google_health/cache/Data_622_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 622,2020-05-13,0.00000000 622,2020-05-14,2045.21549327 622,2020-05-15,0.00000000 +622,2020-05-16,0.00000000 +622,2020-05-17,0.00000000 +622,2020-05-18,0.00000000 +622,2020-05-19,2134.18389983 +622,2020-05-20,0.00000000 +622,2020-05-21,0.00000000 +622,2020-05-22,0.00000000 +622,2020-05-23,0.00000000 +622,2020-05-24,0.00000000 +622,2020-05-25,0.00000000 +622,2020-05-26,0.00000000 +622,2020-05-27,0.00000000 +622,2020-05-28,0.00000000 +622,2020-05-29,0.00000000 +622,2020-05-30,0.00000000 +622,2020-05-31,0.00000000 +622,2020-06-01,0.00000000 +622,2020-06-02,2211.21723584 +622,2020-06-03,0.00000000 +622,2020-06-04,0.00000000 +622,2020-06-05,1079.45213326 diff --git a/google_health/cache/Data_623_anosmia_ms.csv b/google_health/cache/Data_623_anosmia_ms.csv index 896a10ccc..9d8261fce 100644 --- a/google_health/cache/Data_623_anosmia_ms.csv +++ b/google_health/cache/Data_623_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 623,2020-05-13,173.23192971 623,2020-05-14,628.40791953 623,2020-05-15,178.03366408 +623,2020-05-16,592.18172577 +623,2020-05-17,406.13460291 +623,2020-05-18,801.64867105 +623,2020-05-19,358.37699737 +623,2020-05-20,362.20670460 +623,2020-05-21,365.16746955 +623,2020-05-22,555.20263950 +623,2020-05-23,421.23803309 +623,2020-05-24,637.78680139 +623,2020-05-25,0.00000000 +623,2020-05-26,0.00000000 +623,2020-05-27,374.65311387 +623,2020-05-28,372.06817133 +623,2020-05-29,760.76953231 +623,2020-05-30,211.32146317 +623,2020-05-31,854.17015063 +623,2020-06-01,0.00000000 +623,2020-06-02,184.95303552 +623,2020-06-03,177.17590343 +623,2020-06-04,177.19652114 +623,2020-06-05,362.97657859 diff --git a/google_health/cache/Data_624_anosmia_ms.csv b/google_health/cache/Data_624_anosmia_ms.csv index c9d0a062a..bc0619f29 100644 --- a/google_health/cache/Data_624_anosmia_ms.csv +++ b/google_health/cache/Data_624_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 624,2020-05-13,0.00000000 624,2020-05-14,0.00000000 624,2020-05-15,0.00000000 +624,2020-05-16,0.00000000 +624,2020-05-17,0.00000000 +624,2020-05-18,0.00000000 +624,2020-05-19,0.00000000 +624,2020-05-20,0.00000000 +624,2020-05-21,0.00000000 +624,2020-05-22,0.00000000 +624,2020-05-23,15105.74018127 +624,2020-05-24,0.00000000 +624,2020-05-25,0.00000000 +624,2020-05-26,0.00000000 +624,2020-05-27,0.00000000 +624,2020-05-28,0.00000000 +624,2020-05-29,0.00000000 +624,2020-05-30,0.00000000 +624,2020-05-31,0.00000000 +624,2020-06-01,6313.13131313 +624,2020-06-02,0.00000000 +624,2020-06-03,0.00000000 +624,2020-06-04,0.00000000 +624,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_625_anosmia_ms.csv b/google_health/cache/Data_625_anosmia_ms.csv index c45d298b7..abee50e28 100644 --- a/google_health/cache/Data_625_anosmia_ms.csv +++ b/google_health/cache/Data_625_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 625,2020-05-13,0.00000000 625,2020-05-14,0.00000000 625,2020-05-15,0.00000000 +625,2020-05-16,0.00000000 +625,2020-05-17,0.00000000 +625,2020-05-18,0.00000000 +625,2020-05-19,0.00000000 +625,2020-05-20,0.00000000 +625,2020-05-21,0.00000000 +625,2020-05-22,0.00000000 +625,2020-05-23,0.00000000 +625,2020-05-24,2263.46763241 +625,2020-05-25,0.00000000 +625,2020-05-26,0.00000000 +625,2020-05-27,2028.39756592 +625,2020-05-28,0.00000000 +625,2020-05-29,0.00000000 +625,2020-05-30,0.00000000 +625,2020-05-31,0.00000000 +625,2020-06-01,0.00000000 +625,2020-06-02,0.00000000 +625,2020-06-03,0.00000000 +625,2020-06-04,0.00000000 +625,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_626_anosmia_ms.csv b/google_health/cache/Data_626_anosmia_ms.csv index 935146d9d..526625788 100644 --- a/google_health/cache/Data_626_anosmia_ms.csv +++ b/google_health/cache/Data_626_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 626,2020-05-13,0.00000000 626,2020-05-14,0.00000000 626,2020-05-15,0.00000000 +626,2020-05-16,0.00000000 +626,2020-05-17,0.00000000 +626,2020-05-18,0.00000000 +626,2020-05-19,0.00000000 +626,2020-05-20,0.00000000 +626,2020-05-21,0.00000000 +626,2020-05-22,0.00000000 +626,2020-05-23,0.00000000 +626,2020-05-24,0.00000000 +626,2020-05-25,0.00000000 +626,2020-05-26,0.00000000 +626,2020-05-27,0.00000000 +626,2020-05-28,0.00000000 +626,2020-05-29,0.00000000 +626,2020-05-30,0.00000000 +626,2020-05-31,0.00000000 +626,2020-06-01,0.00000000 +626,2020-06-02,0.00000000 +626,2020-06-03,0.00000000 +626,2020-06-04,0.00000000 +626,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_627_anosmia_ms.csv b/google_health/cache/Data_627_anosmia_ms.csv index 3a1d80cae..e27937af1 100644 --- a/google_health/cache/Data_627_anosmia_ms.csv +++ b/google_health/cache/Data_627_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 627,2020-05-13,0.00000000 627,2020-05-14,5417.11809317 627,2020-05-15,0.00000000 +627,2020-05-16,0.00000000 +627,2020-05-17,0.00000000 +627,2020-05-18,0.00000000 +627,2020-05-19,5945.30321046 +627,2020-05-20,0.00000000 +627,2020-05-21,0.00000000 +627,2020-05-22,0.00000000 +627,2020-05-23,0.00000000 +627,2020-05-24,0.00000000 +627,2020-05-25,0.00000000 +627,2020-05-26,0.00000000 +627,2020-05-27,0.00000000 +627,2020-05-28,0.00000000 +627,2020-05-29,0.00000000 +627,2020-05-30,0.00000000 +627,2020-05-31,0.00000000 +627,2020-06-01,0.00000000 +627,2020-06-02,0.00000000 +627,2020-06-03,5656.10859729 +627,2020-06-04,0.00000000 +627,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_628_anosmia_ms.csv b/google_health/cache/Data_628_anosmia_ms.csv index 36c11b465..1ffd3a143 100644 --- a/google_health/cache/Data_628_anosmia_ms.csv +++ b/google_health/cache/Data_628_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 628,2020-05-13,0.00000000 628,2020-05-14,0.00000000 628,2020-05-15,0.00000000 +628,2020-05-16,0.00000000 +628,2020-05-17,0.00000000 +628,2020-05-18,0.00000000 +628,2020-05-19,6626.90523526 +628,2020-05-20,0.00000000 +628,2020-05-21,0.00000000 +628,2020-05-22,0.00000000 +628,2020-05-23,0.00000000 +628,2020-05-24,0.00000000 +628,2020-05-25,0.00000000 +628,2020-05-26,0.00000000 +628,2020-05-27,0.00000000 +628,2020-05-28,0.00000000 +628,2020-05-29,0.00000000 +628,2020-05-30,0.00000000 +628,2020-05-31,8403.36134454 +628,2020-06-01,0.00000000 +628,2020-06-02,0.00000000 +628,2020-06-03,0.00000000 +628,2020-06-04,0.00000000 +628,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_630_anosmia_ms.csv b/google_health/cache/Data_630_anosmia_ms.csv index 257490dc6..e9bce1225 100644 --- a/google_health/cache/Data_630_anosmia_ms.csv +++ b/google_health/cache/Data_630_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 630,2020-05-13,1018.91907794 630,2020-05-14,1009.22066129 630,2020-05-15,2049.27986523 +630,2020-05-16,0.00000000 +630,2020-05-17,0.00000000 +630,2020-05-18,0.00000000 +630,2020-05-19,0.00000000 +630,2020-05-20,1041.21964131 +630,2020-05-21,0.00000000 +630,2020-05-22,0.00000000 +630,2020-05-23,0.00000000 +630,2020-05-24,0.00000000 +630,2020-05-25,0.00000000 +630,2020-05-26,0.00000000 +630,2020-05-27,1004.60314806 +630,2020-05-28,0.00000000 +630,2020-05-29,0.00000000 +630,2020-05-30,0.00000000 +630,2020-05-31,0.00000000 +630,2020-06-01,2169.03502368 +630,2020-06-02,0.00000000 +630,2020-06-03,3047.24692599 +630,2020-06-04,1035.68509366 +630,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_631_anosmia_ms.csv b/google_health/cache/Data_631_anosmia_ms.csv index 88e367ab9..3ee832bd8 100644 --- a/google_health/cache/Data_631_anosmia_ms.csv +++ b/google_health/cache/Data_631_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 631,2020-05-13,0.00000000 631,2020-05-14,0.00000000 631,2020-05-15,0.00000000 +631,2020-05-16,0.00000000 +631,2020-05-17,0.00000000 +631,2020-05-18,0.00000000 +631,2020-05-19,0.00000000 +631,2020-05-20,0.00000000 +631,2020-05-21,0.00000000 +631,2020-05-22,0.00000000 +631,2020-05-23,0.00000000 +631,2020-05-24,0.00000000 +631,2020-05-25,0.00000000 +631,2020-05-26,0.00000000 +631,2020-05-27,0.00000000 +631,2020-05-28,0.00000000 +631,2020-05-29,0.00000000 +631,2020-05-30,0.00000000 +631,2020-05-31,0.00000000 +631,2020-06-01,0.00000000 +631,2020-06-02,0.00000000 +631,2020-06-03,0.00000000 +631,2020-06-04,0.00000000 +631,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_632_anosmia_ms.csv b/google_health/cache/Data_632_anosmia_ms.csv index b9ee19a3a..49a3cc1df 100644 --- a/google_health/cache/Data_632_anosmia_ms.csv +++ b/google_health/cache/Data_632_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 632,2020-05-13,0.00000000 632,2020-05-14,0.00000000 632,2020-05-15,0.00000000 +632,2020-05-16,0.00000000 +632,2020-05-17,0.00000000 +632,2020-05-18,0.00000000 +632,2020-05-19,0.00000000 +632,2020-05-20,0.00000000 +632,2020-05-21,0.00000000 +632,2020-05-22,0.00000000 +632,2020-05-23,0.00000000 +632,2020-05-24,0.00000000 +632,2020-05-25,0.00000000 +632,2020-05-26,0.00000000 +632,2020-05-27,0.00000000 +632,2020-05-28,2891.84499711 +632,2020-05-29,0.00000000 +632,2020-05-30,0.00000000 +632,2020-05-31,0.00000000 +632,2020-06-01,0.00000000 +632,2020-06-02,0.00000000 +632,2020-06-03,0.00000000 +632,2020-06-04,0.00000000 +632,2020-06-05,2896.87137891 diff --git a/google_health/cache/Data_633_anosmia_ms.csv b/google_health/cache/Data_633_anosmia_ms.csv index d519ba880..3ba46e39f 100644 --- a/google_health/cache/Data_633_anosmia_ms.csv +++ b/google_health/cache/Data_633_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 633,2020-05-13,0.00000000 633,2020-05-14,0.00000000 633,2020-05-15,0.00000000 +633,2020-05-16,0.00000000 +633,2020-05-17,0.00000000 +633,2020-05-18,0.00000000 +633,2020-05-19,0.00000000 +633,2020-05-20,0.00000000 +633,2020-05-21,0.00000000 +633,2020-05-22,0.00000000 +633,2020-05-23,0.00000000 +633,2020-05-24,0.00000000 +633,2020-05-25,0.00000000 +633,2020-05-26,0.00000000 +633,2020-05-27,0.00000000 +633,2020-05-28,0.00000000 +633,2020-05-29,0.00000000 +633,2020-05-30,0.00000000 +633,2020-05-31,0.00000000 +633,2020-06-01,0.00000000 +633,2020-06-02,0.00000000 +633,2020-06-03,0.00000000 +633,2020-06-04,0.00000000 +633,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_634_anosmia_ms.csv b/google_health/cache/Data_634_anosmia_ms.csv index 52c1dbad5..d465183a8 100644 --- a/google_health/cache/Data_634_anosmia_ms.csv +++ b/google_health/cache/Data_634_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 634,2020-05-13,0.00000000 634,2020-05-14,0.00000000 634,2020-05-15,0.00000000 +634,2020-05-16,0.00000000 +634,2020-05-17,0.00000000 +634,2020-05-18,0.00000000 +634,2020-05-19,0.00000000 +634,2020-05-20,0.00000000 +634,2020-05-21,0.00000000 +634,2020-05-22,0.00000000 +634,2020-05-23,0.00000000 +634,2020-05-24,0.00000000 +634,2020-05-25,0.00000000 +634,2020-05-26,0.00000000 +634,2020-05-27,4918.83915396 +634,2020-05-28,0.00000000 +634,2020-05-29,0.00000000 +634,2020-05-30,0.00000000 +634,2020-05-31,0.00000000 +634,2020-06-01,5020.08032129 +634,2020-06-02,0.00000000 +634,2020-06-03,0.00000000 +634,2020-06-04,0.00000000 +634,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_635_anosmia_ms.csv b/google_health/cache/Data_635_anosmia_ms.csv index f6a50f6d3..dd4668f65 100644 --- a/google_health/cache/Data_635_anosmia_ms.csv +++ b/google_health/cache/Data_635_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 635,2020-05-13,0.00000000 635,2020-05-14,0.00000000 635,2020-05-15,0.00000000 +635,2020-05-16,0.00000000 +635,2020-05-17,761.89442095 +635,2020-05-18,1551.49163827 +635,2020-05-19,0.00000000 +635,2020-05-20,630.49974161 +635,2020-05-21,643.01406972 +635,2020-05-22,0.00000000 +635,2020-05-23,0.00000000 +635,2020-05-24,0.00000000 +635,2020-05-25,0.00000000 +635,2020-05-26,0.00000000 +635,2020-05-27,635.98708498 +635,2020-05-28,1306.13818282 +635,2020-05-29,0.00000000 +635,2020-05-30,1517.71819598 +635,2020-05-31,0.00000000 +635,2020-06-01,1292.14500425 +635,2020-06-02,0.00000000 +635,2020-06-03,623.72979404 +635,2020-06-04,0.00000000 +635,2020-06-05,1289.17904638 diff --git a/google_health/cache/Data_636_anosmia_ms.csv b/google_health/cache/Data_636_anosmia_ms.csv index 7d8fcf528..b108d21a4 100644 --- a/google_health/cache/Data_636_anosmia_ms.csv +++ b/google_health/cache/Data_636_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 636,2020-05-13,0.00000000 636,2020-05-14,0.00000000 636,2020-05-15,0.00000000 +636,2020-05-16,0.00000000 +636,2020-05-17,0.00000000 +636,2020-05-18,0.00000000 +636,2020-05-19,0.00000000 +636,2020-05-20,0.00000000 +636,2020-05-21,0.00000000 +636,2020-05-22,0.00000000 +636,2020-05-23,0.00000000 +636,2020-05-24,0.00000000 +636,2020-05-25,0.00000000 +636,2020-05-26,0.00000000 +636,2020-05-27,0.00000000 +636,2020-05-28,0.00000000 +636,2020-05-29,0.00000000 +636,2020-05-30,0.00000000 +636,2020-05-31,0.00000000 +636,2020-06-01,0.00000000 +636,2020-06-02,0.00000000 +636,2020-06-03,0.00000000 +636,2020-06-04,0.00000000 +636,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_637_anosmia_ms.csv b/google_health/cache/Data_637_anosmia_ms.csv index 6866e06e4..f98d3208c 100644 --- a/google_health/cache/Data_637_anosmia_ms.csv +++ b/google_health/cache/Data_637_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 637,2020-05-13,0.00000000 637,2020-05-14,0.00000000 637,2020-05-15,0.00000000 +637,2020-05-16,0.00000000 +637,2020-05-17,0.00000000 +637,2020-05-18,0.00000000 +637,2020-05-19,0.00000000 +637,2020-05-20,4869.73459946 +637,2020-05-21,0.00000000 +637,2020-05-22,0.00000000 +637,2020-05-23,2720.34820457 +637,2020-05-24,0.00000000 +637,2020-05-25,0.00000000 +637,2020-05-26,2143.16330904 +637,2020-05-27,0.00000000 +637,2020-05-28,0.00000000 +637,2020-05-29,0.00000000 +637,2020-05-30,0.00000000 +637,2020-05-31,0.00000000 +637,2020-06-01,0.00000000 +637,2020-06-02,0.00000000 +637,2020-06-03,0.00000000 +637,2020-06-04,0.00000000 +637,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_638_anosmia_ms.csv b/google_health/cache/Data_638_anosmia_ms.csv index d7cbab8bd..c7d0ff5e9 100644 --- a/google_health/cache/Data_638_anosmia_ms.csv +++ b/google_health/cache/Data_638_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 638,2020-05-13,0.00000000 638,2020-05-14,0.00000000 638,2020-05-15,0.00000000 +638,2020-05-16,0.00000000 +638,2020-05-17,0.00000000 +638,2020-05-18,0.00000000 +638,2020-05-19,0.00000000 +638,2020-05-20,0.00000000 +638,2020-05-21,0.00000000 +638,2020-05-22,0.00000000 +638,2020-05-23,0.00000000 +638,2020-05-24,0.00000000 +638,2020-05-25,0.00000000 +638,2020-05-26,0.00000000 +638,2020-05-27,0.00000000 +638,2020-05-28,0.00000000 +638,2020-05-29,0.00000000 +638,2020-05-30,0.00000000 +638,2020-05-31,0.00000000 +638,2020-06-01,0.00000000 +638,2020-06-02,0.00000000 +638,2020-06-03,0.00000000 +638,2020-06-04,0.00000000 +638,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_639_anosmia_ms.csv b/google_health/cache/Data_639_anosmia_ms.csv index 7c1ad4440..5aa3cddad 100644 --- a/google_health/cache/Data_639_anosmia_ms.csv +++ b/google_health/cache/Data_639_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 639,2020-05-13,0.00000000 639,2020-05-14,0.00000000 639,2020-05-15,0.00000000 +639,2020-05-16,0.00000000 +639,2020-05-17,0.00000000 +639,2020-05-18,0.00000000 +639,2020-05-19,0.00000000 +639,2020-05-20,0.00000000 +639,2020-05-21,0.00000000 +639,2020-05-22,0.00000000 +639,2020-05-23,0.00000000 +639,2020-05-24,0.00000000 +639,2020-05-25,0.00000000 +639,2020-05-26,0.00000000 +639,2020-05-27,0.00000000 +639,2020-05-28,0.00000000 +639,2020-05-29,0.00000000 +639,2020-05-30,0.00000000 +639,2020-05-31,0.00000000 +639,2020-06-01,0.00000000 +639,2020-06-02,0.00000000 +639,2020-06-03,0.00000000 +639,2020-06-04,0.00000000 +639,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_640_anosmia_ms.csv b/google_health/cache/Data_640_anosmia_ms.csv index c02ac8933..da72ee8b0 100644 --- a/google_health/cache/Data_640_anosmia_ms.csv +++ b/google_health/cache/Data_640_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 640,2020-05-13,0.00000000 640,2020-05-14,2334.55036437 640,2020-05-15,0.00000000 +640,2020-05-16,0.00000000 +640,2020-05-17,0.00000000 +640,2020-05-18,0.00000000 +640,2020-05-19,0.00000000 +640,2020-05-20,0.00000000 +640,2020-05-21,0.00000000 +640,2020-05-22,0.00000000 +640,2020-05-23,0.00000000 +640,2020-05-24,0.00000000 +640,2020-05-25,0.00000000 +640,2020-05-26,2524.47694696 +640,2020-05-27,0.00000000 +640,2020-05-28,0.00000000 +640,2020-05-29,0.00000000 +640,2020-05-30,1444.01192596 +640,2020-05-31,3060.44376435 +640,2020-06-01,0.00000000 +640,2020-06-02,0.00000000 +640,2020-06-03,0.00000000 +640,2020-06-04,0.00000000 +640,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_641_anosmia_ms.csv b/google_health/cache/Data_641_anosmia_ms.csv index 2457a3bb8..dee71d641 100644 --- a/google_health/cache/Data_641_anosmia_ms.csv +++ b/google_health/cache/Data_641_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 641,2020-05-13,624.78610440 641,2020-05-14,0.00000000 641,2020-05-15,1913.33058666 +641,2020-05-16,1442.04402275 +641,2020-05-17,0.00000000 +641,2020-05-18,0.00000000 +641,2020-05-19,0.00000000 +641,2020-05-20,0.00000000 +641,2020-05-21,0.00000000 +641,2020-05-22,0.00000000 +641,2020-05-23,0.00000000 +641,2020-05-24,0.00000000 +641,2020-05-25,714.89981967 +641,2020-05-26,655.62994503 +641,2020-05-27,1963.29600438 +641,2020-05-28,0.00000000 +641,2020-05-29,0.00000000 +641,2020-05-30,0.00000000 +641,2020-05-31,758.76034163 +641,2020-06-01,0.00000000 +641,2020-06-02,0.00000000 +641,2020-06-03,0.00000000 +641,2020-06-04,0.00000000 +641,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_642_anosmia_ms.csv b/google_health/cache/Data_642_anosmia_ms.csv index bfc75d673..b1e039aba 100644 --- a/google_health/cache/Data_642_anosmia_ms.csv +++ b/google_health/cache/Data_642_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 642,2020-05-13,0.00000000 642,2020-05-14,0.00000000 642,2020-05-15,0.00000000 +642,2020-05-16,0.00000000 +642,2020-05-17,0.00000000 +642,2020-05-18,0.00000000 +642,2020-05-19,0.00000000 +642,2020-05-20,4076.64084794 +642,2020-05-21,0.00000000 +642,2020-05-22,0.00000000 +642,2020-05-23,0.00000000 +642,2020-05-24,0.00000000 +642,2020-05-25,0.00000000 +642,2020-05-26,0.00000000 +642,2020-05-27,0.00000000 +642,2020-05-28,0.00000000 +642,2020-05-29,0.00000000 +642,2020-05-30,0.00000000 +642,2020-05-31,0.00000000 +642,2020-06-01,0.00000000 +642,2020-06-02,8845.64352057 +642,2020-06-03,0.00000000 +642,2020-06-04,0.00000000 +642,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_643_anosmia_ms.csv b/google_health/cache/Data_643_anosmia_ms.csv index 67b96187c..d94d860e4 100644 --- a/google_health/cache/Data_643_anosmia_ms.csv +++ b/google_health/cache/Data_643_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 643,2020-05-13,0.00000000 643,2020-05-14,0.00000000 643,2020-05-15,0.00000000 +643,2020-05-16,0.00000000 +643,2020-05-17,0.00000000 +643,2020-05-18,0.00000000 +643,2020-05-19,0.00000000 +643,2020-05-20,0.00000000 +643,2020-05-21,0.00000000 +643,2020-05-22,0.00000000 +643,2020-05-23,0.00000000 +643,2020-05-24,0.00000000 +643,2020-05-25,0.00000000 +643,2020-05-26,0.00000000 +643,2020-05-27,0.00000000 +643,2020-05-28,0.00000000 +643,2020-05-29,0.00000000 +643,2020-05-30,0.00000000 +643,2020-05-31,0.00000000 +643,2020-06-01,0.00000000 +643,2020-06-02,0.00000000 +643,2020-06-03,0.00000000 +643,2020-06-04,0.00000000 +643,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_644_anosmia_ms.csv b/google_health/cache/Data_644_anosmia_ms.csv index af2c79768..a2b4548b7 100644 --- a/google_health/cache/Data_644_anosmia_ms.csv +++ b/google_health/cache/Data_644_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 644,2020-05-13,0.00000000 644,2020-05-14,0.00000000 644,2020-05-15,0.00000000 +644,2020-05-16,0.00000000 +644,2020-05-17,0.00000000 +644,2020-05-18,0.00000000 +644,2020-05-19,0.00000000 +644,2020-05-20,0.00000000 +644,2020-05-21,0.00000000 +644,2020-05-22,0.00000000 +644,2020-05-23,0.00000000 +644,2020-05-24,0.00000000 +644,2020-05-25,0.00000000 +644,2020-05-26,0.00000000 +644,2020-05-27,0.00000000 +644,2020-05-28,0.00000000 +644,2020-05-29,0.00000000 +644,2020-05-30,0.00000000 +644,2020-05-31,0.00000000 +644,2020-06-01,0.00000000 +644,2020-06-02,0.00000000 +644,2020-06-03,0.00000000 +644,2020-06-04,0.00000000 +644,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_647_anosmia_ms.csv b/google_health/cache/Data_647_anosmia_ms.csv index 847d408e2..9a217e7dc 100644 --- a/google_health/cache/Data_647_anosmia_ms.csv +++ b/google_health/cache/Data_647_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 647,2020-05-13,0.00000000 647,2020-05-14,0.00000000 647,2020-05-15,0.00000000 +647,2020-05-16,0.00000000 +647,2020-05-17,0.00000000 +647,2020-05-18,0.00000000 +647,2020-05-19,0.00000000 +647,2020-05-20,0.00000000 +647,2020-05-21,0.00000000 +647,2020-05-22,0.00000000 +647,2020-05-23,0.00000000 +647,2020-05-24,0.00000000 +647,2020-05-25,0.00000000 +647,2020-05-26,0.00000000 +647,2020-05-27,0.00000000 +647,2020-05-28,0.00000000 +647,2020-05-29,0.00000000 +647,2020-05-30,0.00000000 +647,2020-05-31,0.00000000 +647,2020-06-01,0.00000000 +647,2020-06-02,0.00000000 +647,2020-06-03,0.00000000 +647,2020-06-04,0.00000000 +647,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_648_anosmia_ms.csv b/google_health/cache/Data_648_anosmia_ms.csv index 83b82cbb2..94d0eae94 100644 --- a/google_health/cache/Data_648_anosmia_ms.csv +++ b/google_health/cache/Data_648_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 648,2020-05-13,0.00000000 648,2020-05-14,2223.70469202 648,2020-05-15,2225.18914108 +648,2020-05-16,0.00000000 +648,2020-05-17,2600.71017750 +648,2020-05-18,0.00000000 +648,2020-05-19,0.00000000 +648,2020-05-20,0.00000000 +648,2020-05-21,0.00000000 +648,2020-05-22,0.00000000 +648,2020-05-23,11277.13560756 +648,2020-05-24,0.00000000 +648,2020-05-25,0.00000000 +648,2020-05-26,0.00000000 +648,2020-05-27,0.00000000 +648,2020-05-28,0.00000000 +648,2020-05-29,0.00000000 +648,2020-05-30,0.00000000 +648,2020-05-31,0.00000000 +648,2020-06-01,0.00000000 +648,2020-06-02,0.00000000 +648,2020-06-03,0.00000000 +648,2020-06-04,0.00000000 +648,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_649_anosmia_ms.csv b/google_health/cache/Data_649_anosmia_ms.csv index 82288c457..265b3c9b7 100644 --- a/google_health/cache/Data_649_anosmia_ms.csv +++ b/google_health/cache/Data_649_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 649,2020-05-13,9499.68334389 649,2020-05-14,0.00000000 649,2020-05-15,0.00000000 +649,2020-05-16,0.00000000 +649,2020-05-17,0.00000000 +649,2020-05-18,0.00000000 +649,2020-05-19,0.00000000 +649,2020-05-20,0.00000000 +649,2020-05-21,0.00000000 +649,2020-05-22,0.00000000 +649,2020-05-23,0.00000000 +649,2020-05-24,0.00000000 +649,2020-05-25,0.00000000 +649,2020-05-26,0.00000000 +649,2020-05-27,0.00000000 +649,2020-05-28,0.00000000 +649,2020-05-29,0.00000000 +649,2020-05-30,0.00000000 +649,2020-05-31,0.00000000 +649,2020-06-01,0.00000000 +649,2020-06-02,0.00000000 +649,2020-06-03,0.00000000 +649,2020-06-04,3228.93122376 +649,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_650_anosmia_ms.csv b/google_health/cache/Data_650_anosmia_ms.csv index 8f85e68fb..b4bc7f766 100644 --- a/google_health/cache/Data_650_anosmia_ms.csv +++ b/google_health/cache/Data_650_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 650,2020-05-13,0.00000000 650,2020-05-14,0.00000000 650,2020-05-15,0.00000000 +650,2020-05-16,0.00000000 +650,2020-05-17,1260.77805631 +650,2020-05-18,0.00000000 +650,2020-05-19,0.00000000 +650,2020-05-20,0.00000000 +650,2020-05-21,0.00000000 +650,2020-05-22,0.00000000 +650,2020-05-23,0.00000000 +650,2020-05-24,0.00000000 +650,2020-05-25,0.00000000 +650,2020-05-26,1152.27595218 +650,2020-05-27,0.00000000 +650,2020-05-28,0.00000000 +650,2020-05-29,0.00000000 +650,2020-05-30,2685.94400486 +650,2020-05-31,0.00000000 +650,2020-06-01,0.00000000 +650,2020-06-02,2295.22277565 +650,2020-06-03,0.00000000 +650,2020-06-04,0.00000000 +650,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_651_anosmia_ms.csv b/google_health/cache/Data_651_anosmia_ms.csv index 9d0200c7c..2b7067bde 100644 --- a/google_health/cache/Data_651_anosmia_ms.csv +++ b/google_health/cache/Data_651_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 651,2020-05-13,0.00000000 651,2020-05-14,0.00000000 651,2020-05-15,0.00000000 +651,2020-05-16,0.00000000 +651,2020-05-17,0.00000000 +651,2020-05-18,0.00000000 +651,2020-05-19,0.00000000 +651,2020-05-20,0.00000000 +651,2020-05-21,0.00000000 +651,2020-05-22,0.00000000 +651,2020-05-23,0.00000000 +651,2020-05-24,0.00000000 +651,2020-05-25,0.00000000 +651,2020-05-26,0.00000000 +651,2020-05-27,0.00000000 +651,2020-05-28,0.00000000 +651,2020-05-29,0.00000000 +651,2020-05-30,0.00000000 +651,2020-05-31,0.00000000 +651,2020-06-01,0.00000000 +651,2020-06-02,0.00000000 +651,2020-06-03,0.00000000 +651,2020-06-04,0.00000000 +651,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_652_anosmia_ms.csv b/google_health/cache/Data_652_anosmia_ms.csv index 198c21110..69ea9e03b 100644 --- a/google_health/cache/Data_652_anosmia_ms.csv +++ b/google_health/cache/Data_652_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 652,2020-05-13,0.00000000 652,2020-05-14,4094.13616317 652,2020-05-15,0.00000000 +652,2020-05-16,0.00000000 +652,2020-05-17,0.00000000 +652,2020-05-18,0.00000000 +652,2020-05-19,0.00000000 +652,2020-05-20,1438.42283421 +652,2020-05-21,1472.30893224 +652,2020-05-22,0.00000000 +652,2020-05-23,0.00000000 +652,2020-05-24,0.00000000 +652,2020-05-25,0.00000000 +652,2020-05-26,0.00000000 +652,2020-05-27,1435.33649729 +652,2020-05-28,0.00000000 +652,2020-05-29,0.00000000 +652,2020-05-30,0.00000000 +652,2020-05-31,0.00000000 +652,2020-06-01,1429.38822184 +652,2020-06-02,0.00000000 +652,2020-06-03,1467.78218112 +652,2020-06-04,2868.59161982 +652,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_656_anosmia_ms.csv b/google_health/cache/Data_656_anosmia_ms.csv index b3314d088..9056cb966 100644 --- a/google_health/cache/Data_656_anosmia_ms.csv +++ b/google_health/cache/Data_656_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 656,2020-05-13,0.00000000 656,2020-05-14,0.00000000 656,2020-05-15,0.00000000 +656,2020-05-16,0.00000000 +656,2020-05-17,0.00000000 +656,2020-05-18,0.00000000 +656,2020-05-19,0.00000000 +656,2020-05-20,0.00000000 +656,2020-05-21,0.00000000 +656,2020-05-22,0.00000000 +656,2020-05-23,0.00000000 +656,2020-05-24,0.00000000 +656,2020-05-25,0.00000000 +656,2020-05-26,5053.05709955 +656,2020-05-27,0.00000000 +656,2020-05-28,0.00000000 +656,2020-05-29,0.00000000 +656,2020-05-30,0.00000000 +656,2020-05-31,0.00000000 +656,2020-06-01,0.00000000 +656,2020-06-02,0.00000000 +656,2020-06-03,0.00000000 +656,2020-06-04,0.00000000 +656,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_657_anosmia_ms.csv b/google_health/cache/Data_657_anosmia_ms.csv index d3466eb40..9e11d0511 100644 --- a/google_health/cache/Data_657_anosmia_ms.csv +++ b/google_health/cache/Data_657_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 657,2020-05-13,0.00000000 657,2020-05-14,0.00000000 657,2020-05-15,0.00000000 +657,2020-05-16,0.00000000 +657,2020-05-17,0.00000000 +657,2020-05-18,0.00000000 +657,2020-05-19,0.00000000 +657,2020-05-20,0.00000000 +657,2020-05-21,0.00000000 +657,2020-05-22,0.00000000 +657,2020-05-23,0.00000000 +657,2020-05-24,0.00000000 +657,2020-05-25,0.00000000 +657,2020-05-26,0.00000000 +657,2020-05-27,0.00000000 +657,2020-05-28,0.00000000 +657,2020-05-29,0.00000000 +657,2020-05-30,0.00000000 +657,2020-05-31,0.00000000 +657,2020-06-01,0.00000000 +657,2020-06-02,0.00000000 +657,2020-06-03,0.00000000 +657,2020-06-04,0.00000000 +657,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_658_anosmia_ms.csv b/google_health/cache/Data_658_anosmia_ms.csv index 50ba763f9..8412a0f49 100644 --- a/google_health/cache/Data_658_anosmia_ms.csv +++ b/google_health/cache/Data_658_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 658,2020-05-13,0.00000000 658,2020-05-14,0.00000000 658,2020-05-15,0.00000000 +658,2020-05-16,2231.14680946 +658,2020-05-17,0.00000000 +658,2020-05-18,0.00000000 +658,2020-05-19,1749.47515745 +658,2020-05-20,1832.17295713 +658,2020-05-21,0.00000000 +658,2020-05-22,0.00000000 +658,2020-05-23,0.00000000 +658,2020-05-24,0.00000000 +658,2020-05-25,0.00000000 +658,2020-05-26,0.00000000 +658,2020-05-27,0.00000000 +658,2020-05-28,0.00000000 +658,2020-05-29,0.00000000 +658,2020-05-30,0.00000000 +658,2020-05-31,2304.67849735 +658,2020-06-01,0.00000000 +658,2020-06-02,0.00000000 +658,2020-06-03,0.00000000 +658,2020-06-04,0.00000000 +658,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_659_anosmia_ms.csv b/google_health/cache/Data_659_anosmia_ms.csv index 30952090c..724114e40 100644 --- a/google_health/cache/Data_659_anosmia_ms.csv +++ b/google_health/cache/Data_659_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 659,2020-05-13,1125.06626994 659,2020-05-14,1141.48672458 659,2020-05-15,0.00000000 +659,2020-05-16,0.00000000 +659,2020-05-17,0.00000000 +659,2020-05-18,1133.65216926 +659,2020-05-19,0.00000000 +659,2020-05-20,0.00000000 +659,2020-05-21,0.00000000 +659,2020-05-22,1202.34872769 +659,2020-05-23,1338.68123493 +659,2020-05-24,1369.59354417 +659,2020-05-25,1310.86803978 +659,2020-05-26,0.00000000 +659,2020-05-27,0.00000000 +659,2020-05-28,2339.09958852 +659,2020-05-29,1217.70398403 +659,2020-05-30,1349.45240070 +659,2020-05-31,0.00000000 +659,2020-06-01,1773.34722183 +659,2020-06-02,0.00000000 +659,2020-06-03,1146.92770831 +659,2020-06-04,563.23044095 +659,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_661_anosmia_ms.csv b/google_health/cache/Data_661_anosmia_ms.csv index 176630964..4128ffc3f 100644 --- a/google_health/cache/Data_661_anosmia_ms.csv +++ b/google_health/cache/Data_661_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 661,2020-05-13,0.00000000 661,2020-05-14,0.00000000 661,2020-05-15,0.00000000 +661,2020-05-16,0.00000000 +661,2020-05-17,0.00000000 +661,2020-05-18,0.00000000 +661,2020-05-19,0.00000000 +661,2020-05-20,0.00000000 +661,2020-05-21,0.00000000 +661,2020-05-22,0.00000000 +661,2020-05-23,0.00000000 +661,2020-05-24,0.00000000 +661,2020-05-25,0.00000000 +661,2020-05-26,0.00000000 +661,2020-05-27,0.00000000 +661,2020-05-28,0.00000000 +661,2020-05-29,0.00000000 +661,2020-05-30,0.00000000 +661,2020-05-31,0.00000000 +661,2020-06-01,0.00000000 +661,2020-06-02,0.00000000 +661,2020-06-03,0.00000000 +661,2020-06-04,0.00000000 +661,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_662_anosmia_ms.csv b/google_health/cache/Data_662_anosmia_ms.csv index ea06268b9..590985023 100644 --- a/google_health/cache/Data_662_anosmia_ms.csv +++ b/google_health/cache/Data_662_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 662,2020-05-13,0.00000000 662,2020-05-14,0.00000000 662,2020-05-15,0.00000000 +662,2020-05-16,0.00000000 +662,2020-05-17,0.00000000 +662,2020-05-18,0.00000000 +662,2020-05-19,0.00000000 +662,2020-05-20,0.00000000 +662,2020-05-21,0.00000000 +662,2020-05-22,0.00000000 +662,2020-05-23,0.00000000 +662,2020-05-24,0.00000000 +662,2020-05-25,0.00000000 +662,2020-05-26,0.00000000 +662,2020-05-27,0.00000000 +662,2020-05-28,0.00000000 +662,2020-05-29,0.00000000 +662,2020-05-30,0.00000000 +662,2020-05-31,0.00000000 +662,2020-06-01,0.00000000 +662,2020-06-02,0.00000000 +662,2020-06-03,0.00000000 +662,2020-06-04,0.00000000 +662,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_669_anosmia_ms.csv b/google_health/cache/Data_669_anosmia_ms.csv index d8e1d3b9a..79ca17066 100644 --- a/google_health/cache/Data_669_anosmia_ms.csv +++ b/google_health/cache/Data_669_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 669,2020-05-13,0.00000000 669,2020-05-14,0.00000000 669,2020-05-15,0.00000000 +669,2020-05-16,0.00000000 +669,2020-05-17,0.00000000 +669,2020-05-18,0.00000000 +669,2020-05-19,0.00000000 +669,2020-05-20,3663.67466569 +669,2020-05-21,0.00000000 +669,2020-05-22,1911.68036704 +669,2020-05-23,0.00000000 +669,2020-05-24,0.00000000 +669,2020-05-25,0.00000000 +669,2020-05-26,3544.21407053 +669,2020-05-27,0.00000000 +669,2020-05-28,0.00000000 +669,2020-05-29,1868.80956830 +669,2020-05-30,4480.28673835 +669,2020-05-31,0.00000000 +669,2020-06-01,1751.27973498 +669,2020-06-02,0.00000000 +669,2020-06-03,0.00000000 +669,2020-06-04,0.00000000 +669,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_670_anosmia_ms.csv b/google_health/cache/Data_670_anosmia_ms.csv index 06ab66675..d103012f8 100644 --- a/google_health/cache/Data_670_anosmia_ms.csv +++ b/google_health/cache/Data_670_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 670,2020-05-13,0.00000000 670,2020-05-14,0.00000000 670,2020-05-15,0.00000000 +670,2020-05-16,0.00000000 +670,2020-05-17,0.00000000 +670,2020-05-18,0.00000000 +670,2020-05-19,0.00000000 +670,2020-05-20,0.00000000 +670,2020-05-21,2569.33852978 +670,2020-05-22,0.00000000 +670,2020-05-23,8944.54382826 +670,2020-05-24,0.00000000 +670,2020-05-25,0.00000000 +670,2020-05-26,0.00000000 +670,2020-05-27,0.00000000 +670,2020-05-28,0.00000000 +670,2020-05-29,0.00000000 +670,2020-05-30,0.00000000 +670,2020-05-31,0.00000000 +670,2020-06-01,0.00000000 +670,2020-06-02,0.00000000 +670,2020-06-03,0.00000000 +670,2020-06-04,0.00000000 +670,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_671_anosmia_ms.csv b/google_health/cache/Data_671_anosmia_ms.csv index 4127d5e97..6a399eee1 100644 --- a/google_health/cache/Data_671_anosmia_ms.csv +++ b/google_health/cache/Data_671_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 671,2020-05-13,0.00000000 671,2020-05-14,0.00000000 671,2020-05-15,0.00000000 +671,2020-05-16,0.00000000 +671,2020-05-17,0.00000000 +671,2020-05-18,0.00000000 +671,2020-05-19,0.00000000 +671,2020-05-20,0.00000000 +671,2020-05-21,0.00000000 +671,2020-05-22,3386.94195475 +671,2020-05-23,1923.44681670 +671,2020-05-24,0.00000000 +671,2020-05-25,0.00000000 +671,2020-05-26,1612.74986012 +671,2020-05-27,0.00000000 +671,2020-05-28,0.00000000 +671,2020-05-29,0.00000000 +671,2020-05-30,0.00000000 +671,2020-05-31,0.00000000 +671,2020-06-01,0.00000000 +671,2020-06-02,0.00000000 +671,2020-06-03,1570.02683242 +671,2020-06-04,3184.59324395 +671,2020-06-05,3254.44906550 diff --git a/google_health/cache/Data_673_anosmia_ms.csv b/google_health/cache/Data_673_anosmia_ms.csv index a19e355ec..e14c3bebf 100644 --- a/google_health/cache/Data_673_anosmia_ms.csv +++ b/google_health/cache/Data_673_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 673,2020-05-13,0.00000000 673,2020-05-14,0.00000000 673,2020-05-15,0.00000000 +673,2020-05-16,0.00000000 +673,2020-05-17,0.00000000 +673,2020-05-18,0.00000000 +673,2020-05-19,0.00000000 +673,2020-05-20,0.00000000 +673,2020-05-21,0.00000000 +673,2020-05-22,0.00000000 +673,2020-05-23,0.00000000 +673,2020-05-24,0.00000000 +673,2020-05-25,0.00000000 +673,2020-05-26,7052.18617772 +673,2020-05-27,0.00000000 +673,2020-05-28,0.00000000 +673,2020-05-29,0.00000000 +673,2020-05-30,0.00000000 +673,2020-05-31,0.00000000 +673,2020-06-01,0.00000000 +673,2020-06-02,0.00000000 +673,2020-06-03,0.00000000 +673,2020-06-04,0.00000000 +673,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_675_anosmia_ms.csv b/google_health/cache/Data_675_anosmia_ms.csv index ba9f785ad..dc10ab784 100644 --- a/google_health/cache/Data_675_anosmia_ms.csv +++ b/google_health/cache/Data_675_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 675,2020-05-13,0.00000000 675,2020-05-14,0.00000000 675,2020-05-15,0.00000000 +675,2020-05-16,0.00000000 +675,2020-05-17,0.00000000 +675,2020-05-18,0.00000000 +675,2020-05-19,6494.16512085 +675,2020-05-20,3274.39423707 +675,2020-05-21,3341.12930170 +675,2020-05-22,0.00000000 +675,2020-05-23,0.00000000 +675,2020-05-24,0.00000000 +675,2020-05-25,0.00000000 +675,2020-05-26,0.00000000 +675,2020-05-27,0.00000000 +675,2020-05-28,0.00000000 +675,2020-05-29,0.00000000 +675,2020-05-30,0.00000000 +675,2020-05-31,0.00000000 +675,2020-06-01,0.00000000 +675,2020-06-02,0.00000000 +675,2020-06-03,0.00000000 +675,2020-06-04,0.00000000 +675,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_676_anosmia_ms.csv b/google_health/cache/Data_676_anosmia_ms.csv index eb13b7621..6c9e63dd1 100644 --- a/google_health/cache/Data_676_anosmia_ms.csv +++ b/google_health/cache/Data_676_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 676,2020-05-13,0.00000000 676,2020-05-14,0.00000000 676,2020-05-15,0.00000000 +676,2020-05-16,0.00000000 +676,2020-05-17,0.00000000 +676,2020-05-18,0.00000000 +676,2020-05-19,0.00000000 +676,2020-05-20,0.00000000 +676,2020-05-21,0.00000000 +676,2020-05-22,0.00000000 +676,2020-05-23,0.00000000 +676,2020-05-24,0.00000000 +676,2020-05-25,0.00000000 +676,2020-05-26,0.00000000 +676,2020-05-27,0.00000000 +676,2020-05-28,0.00000000 +676,2020-05-29,0.00000000 +676,2020-05-30,0.00000000 +676,2020-05-31,0.00000000 +676,2020-06-01,0.00000000 +676,2020-06-02,0.00000000 +676,2020-06-03,0.00000000 +676,2020-06-04,0.00000000 +676,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_678_anosmia_ms.csv b/google_health/cache/Data_678_anosmia_ms.csv index 2c9f3c15e..17a4950d8 100644 --- a/google_health/cache/Data_678_anosmia_ms.csv +++ b/google_health/cache/Data_678_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 678,2020-05-13,1810.25384600 678,2020-05-14,0.00000000 678,2020-05-15,0.00000000 +678,2020-05-16,2128.11236433 +678,2020-05-17,0.00000000 +678,2020-05-18,1916.81042745 +678,2020-05-19,0.00000000 +678,2020-05-20,0.00000000 +678,2020-05-21,1944.39043360 +678,2020-05-22,0.00000000 +678,2020-05-23,0.00000000 +678,2020-05-24,0.00000000 +678,2020-05-25,0.00000000 +678,2020-05-26,0.00000000 +678,2020-05-27,0.00000000 +678,2020-05-28,4042.03718674 +678,2020-05-29,2058.46027172 +678,2020-05-30,0.00000000 +678,2020-05-31,0.00000000 +678,2020-06-01,0.00000000 +678,2020-06-02,4171.88151856 +678,2020-06-03,1970.21128202 +678,2020-06-04,0.00000000 +678,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_679_anosmia_ms.csv b/google_health/cache/Data_679_anosmia_ms.csv index f22b07dbf..bb31a4d54 100644 --- a/google_health/cache/Data_679_anosmia_ms.csv +++ b/google_health/cache/Data_679_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 679,2020-05-13,0.00000000 679,2020-05-14,1479.85864044 679,2020-05-15,1508.48804974 +679,2020-05-16,1704.15814588 +679,2020-05-17,0.00000000 +679,2020-05-18,1420.82449944 +679,2020-05-19,0.00000000 +679,2020-05-20,0.00000000 +679,2020-05-21,0.00000000 +679,2020-05-22,0.00000000 +679,2020-05-23,0.00000000 +679,2020-05-24,0.00000000 +679,2020-05-25,1698.62642860 +679,2020-05-26,0.00000000 +679,2020-05-27,0.00000000 +679,2020-05-28,3167.54858844 +679,2020-05-29,0.00000000 +679,2020-05-30,0.00000000 +679,2020-05-31,0.00000000 +679,2020-06-01,0.00000000 +679,2020-06-02,0.00000000 +679,2020-06-03,1552.07201614 +679,2020-06-04,0.00000000 +679,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_682_anosmia_ms.csv b/google_health/cache/Data_682_anosmia_ms.csv index b742d7532..198c3d067 100644 --- a/google_health/cache/Data_682_anosmia_ms.csv +++ b/google_health/cache/Data_682_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 682,2020-05-13,0.00000000 682,2020-05-14,0.00000000 682,2020-05-15,0.00000000 +682,2020-05-16,0.00000000 +682,2020-05-17,9609.22485586 +682,2020-05-18,0.00000000 +682,2020-05-19,0.00000000 +682,2020-05-20,0.00000000 +682,2020-05-21,0.00000000 +682,2020-05-22,0.00000000 +682,2020-05-23,0.00000000 +682,2020-05-24,0.00000000 +682,2020-05-25,0.00000000 +682,2020-05-26,0.00000000 +682,2020-05-27,0.00000000 +682,2020-05-28,0.00000000 +682,2020-05-29,0.00000000 +682,2020-05-30,0.00000000 +682,2020-05-31,0.00000000 +682,2020-06-01,0.00000000 +682,2020-06-02,0.00000000 +682,2020-06-03,0.00000000 +682,2020-06-04,0.00000000 +682,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_686_anosmia_ms.csv b/google_health/cache/Data_686_anosmia_ms.csv index 4bffbb9db..b8333e259 100644 --- a/google_health/cache/Data_686_anosmia_ms.csv +++ b/google_health/cache/Data_686_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 686,2020-05-13,1356.65938622 686,2020-05-14,0.00000000 686,2020-05-15,2643.84860334 +686,2020-05-16,4588.55919241 +686,2020-05-17,0.00000000 +686,2020-05-18,0.00000000 +686,2020-05-19,2703.95861788 +686,2020-05-20,0.00000000 +686,2020-05-21,1342.69479753 +686,2020-05-22,0.00000000 +686,2020-05-23,0.00000000 +686,2020-05-24,0.00000000 +686,2020-05-25,0.00000000 +686,2020-05-26,0.00000000 +686,2020-05-27,0.00000000 +686,2020-05-28,0.00000000 +686,2020-05-29,0.00000000 +686,2020-05-30,0.00000000 +686,2020-05-31,0.00000000 +686,2020-06-01,0.00000000 +686,2020-06-02,0.00000000 +686,2020-06-03,3877.38974431 +686,2020-06-04,0.00000000 +686,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_687_anosmia_ms.csv b/google_health/cache/Data_687_anosmia_ms.csv index 3325d7bbe..122f8dd84 100644 --- a/google_health/cache/Data_687_anosmia_ms.csv +++ b/google_health/cache/Data_687_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 687,2020-05-13,0.00000000 687,2020-05-14,0.00000000 687,2020-05-15,0.00000000 +687,2020-05-16,0.00000000 +687,2020-05-17,0.00000000 +687,2020-05-18,0.00000000 +687,2020-05-19,0.00000000 +687,2020-05-20,0.00000000 +687,2020-05-21,5807.20092915 +687,2020-05-22,0.00000000 +687,2020-05-23,0.00000000 +687,2020-05-24,0.00000000 +687,2020-05-25,0.00000000 +687,2020-05-26,0.00000000 +687,2020-05-27,0.00000000 +687,2020-05-28,0.00000000 +687,2020-05-29,0.00000000 +687,2020-05-30,0.00000000 +687,2020-05-31,0.00000000 +687,2020-06-01,0.00000000 +687,2020-06-02,0.00000000 +687,2020-06-03,0.00000000 +687,2020-06-04,0.00000000 +687,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_691_anosmia_ms.csv b/google_health/cache/Data_691_anosmia_ms.csv index cc3587701..69ade293f 100644 --- a/google_health/cache/Data_691_anosmia_ms.csv +++ b/google_health/cache/Data_691_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 691,2020-05-13,0.00000000 691,2020-05-14,0.00000000 691,2020-05-15,4309.41607412 +691,2020-05-16,0.00000000 +691,2020-05-17,0.00000000 +691,2020-05-18,0.00000000 +691,2020-05-19,0.00000000 +691,2020-05-20,0.00000000 +691,2020-05-21,0.00000000 +691,2020-05-22,2132.19616205 +691,2020-05-23,0.00000000 +691,2020-05-24,2498.12640520 +691,2020-05-25,0.00000000 +691,2020-05-26,0.00000000 +691,2020-05-27,0.00000000 +691,2020-05-28,0.00000000 +691,2020-05-29,0.00000000 +691,2020-05-30,0.00000000 +691,2020-05-31,2589.33195236 +691,2020-06-01,0.00000000 +691,2020-06-02,0.00000000 +691,2020-06-03,0.00000000 +691,2020-06-04,0.00000000 +691,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_692_anosmia_ms.csv b/google_health/cache/Data_692_anosmia_ms.csv index 626739a69..60cbcacd2 100644 --- a/google_health/cache/Data_692_anosmia_ms.csv +++ b/google_health/cache/Data_692_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 692,2020-05-13,0.00000000 692,2020-05-14,0.00000000 692,2020-05-15,0.00000000 +692,2020-05-16,0.00000000 +692,2020-05-17,0.00000000 +692,2020-05-18,0.00000000 +692,2020-05-19,0.00000000 +692,2020-05-20,0.00000000 +692,2020-05-21,0.00000000 +692,2020-05-22,0.00000000 +692,2020-05-23,0.00000000 +692,2020-05-24,0.00000000 +692,2020-05-25,0.00000000 +692,2020-05-26,0.00000000 +692,2020-05-27,0.00000000 +692,2020-05-28,0.00000000 +692,2020-05-29,0.00000000 +692,2020-05-30,0.00000000 +692,2020-05-31,0.00000000 +692,2020-06-01,0.00000000 +692,2020-06-02,0.00000000 +692,2020-06-03,0.00000000 +692,2020-06-04,0.00000000 +692,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_693_anosmia_ms.csv b/google_health/cache/Data_693_anosmia_ms.csv index ec891154c..c9fbd5187 100644 --- a/google_health/cache/Data_693_anosmia_ms.csv +++ b/google_health/cache/Data_693_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 693,2020-05-13,0.00000000 693,2020-05-14,0.00000000 693,2020-05-15,0.00000000 +693,2020-05-16,0.00000000 +693,2020-05-17,0.00000000 +693,2020-05-18,0.00000000 +693,2020-05-19,0.00000000 +693,2020-05-20,0.00000000 +693,2020-05-21,1640.41994751 +693,2020-05-22,0.00000000 +693,2020-05-23,0.00000000 +693,2020-05-24,0.00000000 +693,2020-05-25,0.00000000 +693,2020-05-26,0.00000000 +693,2020-05-27,3065.11115038 +693,2020-05-28,0.00000000 +693,2020-05-29,0.00000000 +693,2020-05-30,0.00000000 +693,2020-05-31,0.00000000 +693,2020-06-01,0.00000000 +693,2020-06-02,0.00000000 +693,2020-06-03,0.00000000 +693,2020-06-04,0.00000000 +693,2020-06-05,1539.18679179 diff --git a/google_health/cache/Data_698_anosmia_ms.csv b/google_health/cache/Data_698_anosmia_ms.csv index d4c74fceb..1068489e2 100644 --- a/google_health/cache/Data_698_anosmia_ms.csv +++ b/google_health/cache/Data_698_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 698,2020-05-13,0.00000000 698,2020-05-14,0.00000000 698,2020-05-15,3859.51370127 +698,2020-05-16,8654.26222415 +698,2020-05-17,0.00000000 +698,2020-05-18,0.00000000 +698,2020-05-19,0.00000000 +698,2020-05-20,0.00000000 +698,2020-05-21,0.00000000 +698,2020-05-22,0.00000000 +698,2020-05-23,0.00000000 +698,2020-05-24,0.00000000 +698,2020-05-25,0.00000000 +698,2020-05-26,0.00000000 +698,2020-05-27,0.00000000 +698,2020-05-28,0.00000000 +698,2020-05-29,0.00000000 +698,2020-05-30,0.00000000 +698,2020-05-31,0.00000000 +698,2020-06-01,0.00000000 +698,2020-06-02,4061.73842405 +698,2020-06-03,0.00000000 +698,2020-06-04,0.00000000 +698,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_702_anosmia_ms.csv b/google_health/cache/Data_702_anosmia_ms.csv index 1a04f1da2..3847e598d 100644 --- a/google_health/cache/Data_702_anosmia_ms.csv +++ b/google_health/cache/Data_702_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 702,2020-05-13,0.00000000 702,2020-05-14,0.00000000 702,2020-05-15,0.00000000 +702,2020-05-16,0.00000000 +702,2020-05-17,0.00000000 +702,2020-05-18,0.00000000 +702,2020-05-19,0.00000000 +702,2020-05-20,0.00000000 +702,2020-05-21,0.00000000 +702,2020-05-22,0.00000000 +702,2020-05-23,0.00000000 +702,2020-05-24,0.00000000 +702,2020-05-25,0.00000000 +702,2020-05-26,0.00000000 +702,2020-05-27,4078.30342577 +702,2020-05-28,0.00000000 +702,2020-05-29,0.00000000 +702,2020-05-30,0.00000000 +702,2020-05-31,0.00000000 +702,2020-06-01,0.00000000 +702,2020-06-02,0.00000000 +702,2020-06-03,0.00000000 +702,2020-06-04,0.00000000 +702,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_705_anosmia_ms.csv b/google_health/cache/Data_705_anosmia_ms.csv index 435713146..449c629e9 100644 --- a/google_health/cache/Data_705_anosmia_ms.csv +++ b/google_health/cache/Data_705_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 705,2020-05-13,0.00000000 705,2020-05-14,0.00000000 705,2020-05-15,0.00000000 +705,2020-05-16,0.00000000 +705,2020-05-17,0.00000000 +705,2020-05-18,0.00000000 +705,2020-05-19,0.00000000 +705,2020-05-20,0.00000000 +705,2020-05-21,0.00000000 +705,2020-05-22,0.00000000 +705,2020-05-23,0.00000000 +705,2020-05-24,0.00000000 +705,2020-05-25,0.00000000 +705,2020-05-26,0.00000000 +705,2020-05-27,0.00000000 +705,2020-05-28,0.00000000 +705,2020-05-29,0.00000000 +705,2020-05-30,0.00000000 +705,2020-05-31,0.00000000 +705,2020-06-01,0.00000000 +705,2020-06-02,0.00000000 +705,2020-06-03,0.00000000 +705,2020-06-04,0.00000000 +705,2020-06-05,5144.03292181 diff --git a/google_health/cache/Data_709_anosmia_ms.csv b/google_health/cache/Data_709_anosmia_ms.csv index e58f733a0..a2efca3f5 100644 --- a/google_health/cache/Data_709_anosmia_ms.csv +++ b/google_health/cache/Data_709_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 709,2020-05-13,0.00000000 709,2020-05-14,0.00000000 709,2020-05-15,0.00000000 +709,2020-05-16,0.00000000 +709,2020-05-17,0.00000000 +709,2020-05-18,0.00000000 +709,2020-05-19,0.00000000 +709,2020-05-20,0.00000000 +709,2020-05-21,0.00000000 +709,2020-05-22,0.00000000 +709,2020-05-23,0.00000000 +709,2020-05-24,11914.21763304 +709,2020-05-25,0.00000000 +709,2020-05-26,0.00000000 +709,2020-05-27,0.00000000 +709,2020-05-28,0.00000000 +709,2020-05-29,0.00000000 +709,2020-05-30,8375.20938023 +709,2020-05-31,0.00000000 +709,2020-06-01,0.00000000 +709,2020-06-02,0.00000000 +709,2020-06-03,0.00000000 +709,2020-06-04,3418.80341880 +709,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_710_anosmia_ms.csv b/google_health/cache/Data_710_anosmia_ms.csv index 5db8f760e..059a0aa41 100644 --- a/google_health/cache/Data_710_anosmia_ms.csv +++ b/google_health/cache/Data_710_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 710,2020-05-13,0.00000000 710,2020-05-14,0.00000000 710,2020-05-15,0.00000000 +710,2020-05-16,0.00000000 +710,2020-05-17,0.00000000 +710,2020-05-18,0.00000000 +710,2020-05-19,0.00000000 +710,2020-05-20,0.00000000 +710,2020-05-21,0.00000000 +710,2020-05-22,0.00000000 +710,2020-05-23,0.00000000 +710,2020-05-24,0.00000000 +710,2020-05-25,0.00000000 +710,2020-05-26,0.00000000 +710,2020-05-27,0.00000000 +710,2020-05-28,0.00000000 +710,2020-05-29,0.00000000 +710,2020-05-30,0.00000000 +710,2020-05-31,0.00000000 +710,2020-06-01,0.00000000 +710,2020-06-02,0.00000000 +710,2020-06-03,0.00000000 +710,2020-06-04,0.00000000 +710,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_711_anosmia_ms.csv b/google_health/cache/Data_711_anosmia_ms.csv index 7839f00f1..a7bcdad23 100644 --- a/google_health/cache/Data_711_anosmia_ms.csv +++ b/google_health/cache/Data_711_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 711,2020-05-13,0.00000000 711,2020-05-14,0.00000000 711,2020-05-15,0.00000000 +711,2020-05-16,0.00000000 +711,2020-05-17,0.00000000 +711,2020-05-18,0.00000000 +711,2020-05-19,0.00000000 +711,2020-05-20,0.00000000 +711,2020-05-21,0.00000000 +711,2020-05-22,0.00000000 +711,2020-05-23,0.00000000 +711,2020-05-24,0.00000000 +711,2020-05-25,0.00000000 +711,2020-05-26,0.00000000 +711,2020-05-27,0.00000000 +711,2020-05-28,0.00000000 +711,2020-05-29,0.00000000 +711,2020-05-30,0.00000000 +711,2020-05-31,0.00000000 +711,2020-06-01,0.00000000 +711,2020-06-02,0.00000000 +711,2020-06-03,0.00000000 +711,2020-06-04,0.00000000 +711,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_716_anosmia_ms.csv b/google_health/cache/Data_716_anosmia_ms.csv index 569898567..9be8862f6 100644 --- a/google_health/cache/Data_716_anosmia_ms.csv +++ b/google_health/cache/Data_716_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 716,2020-05-13,0.00000000 716,2020-05-14,0.00000000 716,2020-05-15,0.00000000 +716,2020-05-16,0.00000000 +716,2020-05-17,0.00000000 +716,2020-05-18,0.00000000 +716,2020-05-19,4788.12544889 +716,2020-05-20,0.00000000 +716,2020-05-21,0.00000000 +716,2020-05-22,0.00000000 +716,2020-05-23,5767.01268743 +716,2020-05-24,0.00000000 +716,2020-05-25,5583.47292016 +716,2020-05-26,0.00000000 +716,2020-05-27,0.00000000 +716,2020-05-28,0.00000000 +716,2020-05-29,0.00000000 +716,2020-05-30,0.00000000 +716,2020-05-31,0.00000000 +716,2020-06-01,0.00000000 +716,2020-06-02,0.00000000 +716,2020-06-03,0.00000000 +716,2020-06-04,0.00000000 +716,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_717_anosmia_ms.csv b/google_health/cache/Data_717_anosmia_ms.csv index 9132d1669..23648f04c 100644 --- a/google_health/cache/Data_717_anosmia_ms.csv +++ b/google_health/cache/Data_717_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 717,2020-05-13,0.00000000 717,2020-05-14,0.00000000 717,2020-05-15,0.00000000 +717,2020-05-16,0.00000000 +717,2020-05-17,0.00000000 +717,2020-05-18,0.00000000 +717,2020-05-19,0.00000000 +717,2020-05-20,0.00000000 +717,2020-05-21,0.00000000 +717,2020-05-22,0.00000000 +717,2020-05-23,0.00000000 +717,2020-05-24,0.00000000 +717,2020-05-25,0.00000000 +717,2020-05-26,0.00000000 +717,2020-05-27,0.00000000 +717,2020-05-28,0.00000000 +717,2020-05-29,0.00000000 +717,2020-05-30,0.00000000 +717,2020-05-31,0.00000000 +717,2020-06-01,0.00000000 +717,2020-06-02,0.00000000 +717,2020-06-03,0.00000000 +717,2020-06-04,0.00000000 +717,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_718_anosmia_ms.csv b/google_health/cache/Data_718_anosmia_ms.csv index d372dd8bb..bc1b9d3f4 100644 --- a/google_health/cache/Data_718_anosmia_ms.csv +++ b/google_health/cache/Data_718_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 718,2020-05-13,4981.32004981 718,2020-05-14,0.00000000 718,2020-05-15,0.00000000 +718,2020-05-16,0.00000000 +718,2020-05-17,0.00000000 +718,2020-05-18,4977.60079642 +718,2020-05-19,0.00000000 +718,2020-05-20,2543.88196388 +718,2020-05-21,0.00000000 +718,2020-05-22,0.00000000 +718,2020-05-23,8623.16757689 +718,2020-05-24,0.00000000 +718,2020-05-25,9077.15582451 +718,2020-05-26,0.00000000 +718,2020-05-27,0.00000000 +718,2020-05-28,5095.87461981 +718,2020-05-29,0.00000000 +718,2020-05-30,0.00000000 +718,2020-05-31,0.00000000 +718,2020-06-01,0.00000000 +718,2020-06-02,0.00000000 +718,2020-06-03,7285.08984944 +718,2020-06-04,0.00000000 +718,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_722_anosmia_ms.csv b/google_health/cache/Data_722_anosmia_ms.csv index f80b6a737..8df29b3a1 100644 --- a/google_health/cache/Data_722_anosmia_ms.csv +++ b/google_health/cache/Data_722_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 722,2020-05-13,0.00000000 722,2020-05-14,0.00000000 722,2020-05-15,0.00000000 +722,2020-05-16,0.00000000 +722,2020-05-17,0.00000000 +722,2020-05-18,0.00000000 +722,2020-05-19,0.00000000 +722,2020-05-20,0.00000000 +722,2020-05-21,0.00000000 +722,2020-05-22,0.00000000 +722,2020-05-23,0.00000000 +722,2020-05-24,0.00000000 +722,2020-05-25,0.00000000 +722,2020-05-26,0.00000000 +722,2020-05-27,0.00000000 +722,2020-05-28,0.00000000 +722,2020-05-29,0.00000000 +722,2020-05-30,0.00000000 +722,2020-05-31,0.00000000 +722,2020-06-01,0.00000000 +722,2020-06-02,0.00000000 +722,2020-06-03,0.00000000 +722,2020-06-04,0.00000000 +722,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_724_anosmia_ms.csv b/google_health/cache/Data_724_anosmia_ms.csv index fdaf5002f..f00732877 100644 --- a/google_health/cache/Data_724_anosmia_ms.csv +++ b/google_health/cache/Data_724_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 724,2020-05-13,0.00000000 724,2020-05-14,0.00000000 724,2020-05-15,0.00000000 +724,2020-05-16,0.00000000 +724,2020-05-17,0.00000000 +724,2020-05-18,0.00000000 +724,2020-05-19,0.00000000 +724,2020-05-20,0.00000000 +724,2020-05-21,0.00000000 +724,2020-05-22,0.00000000 +724,2020-05-23,0.00000000 +724,2020-05-24,0.00000000 +724,2020-05-25,0.00000000 +724,2020-05-26,0.00000000 +724,2020-05-27,0.00000000 +724,2020-05-28,0.00000000 +724,2020-05-29,0.00000000 +724,2020-05-30,0.00000000 +724,2020-05-31,0.00000000 +724,2020-06-01,0.00000000 +724,2020-06-02,0.00000000 +724,2020-06-03,0.00000000 +724,2020-06-04,0.00000000 +724,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_725_anosmia_ms.csv b/google_health/cache/Data_725_anosmia_ms.csv index 8f72db069..358a413e4 100644 --- a/google_health/cache/Data_725_anosmia_ms.csv +++ b/google_health/cache/Data_725_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 725,2020-05-13,0.00000000 725,2020-05-14,0.00000000 725,2020-05-15,0.00000000 +725,2020-05-16,0.00000000 +725,2020-05-17,0.00000000 +725,2020-05-18,0.00000000 +725,2020-05-19,0.00000000 +725,2020-05-20,0.00000000 +725,2020-05-21,0.00000000 +725,2020-05-22,0.00000000 +725,2020-05-23,0.00000000 +725,2020-05-24,0.00000000 +725,2020-05-25,0.00000000 +725,2020-05-26,0.00000000 +725,2020-05-27,3500.17500875 +725,2020-05-28,0.00000000 +725,2020-05-29,3824.09177820 +725,2020-05-30,0.00000000 +725,2020-05-31,0.00000000 +725,2020-06-01,0.00000000 +725,2020-06-02,10604.45387063 +725,2020-06-03,0.00000000 +725,2020-06-04,0.00000000 +725,2020-06-05,3503.85423966 diff --git a/google_health/cache/Data_734_anosmia_ms.csv b/google_health/cache/Data_734_anosmia_ms.csv index 4bcfd5f01..725ed7a99 100644 --- a/google_health/cache/Data_734_anosmia_ms.csv +++ b/google_health/cache/Data_734_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 734,2020-05-13,0.00000000 734,2020-05-14,0.00000000 734,2020-05-15,0.00000000 +734,2020-05-16,0.00000000 +734,2020-05-17,0.00000000 +734,2020-05-18,0.00000000 +734,2020-05-19,0.00000000 +734,2020-05-20,0.00000000 +734,2020-05-21,0.00000000 +734,2020-05-22,0.00000000 +734,2020-05-23,0.00000000 +734,2020-05-24,0.00000000 +734,2020-05-25,0.00000000 +734,2020-05-26,0.00000000 +734,2020-05-27,0.00000000 +734,2020-05-28,0.00000000 +734,2020-05-29,0.00000000 +734,2020-05-30,0.00000000 +734,2020-05-31,0.00000000 +734,2020-06-01,0.00000000 +734,2020-06-02,0.00000000 +734,2020-06-03,0.00000000 +734,2020-06-04,0.00000000 +734,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_736_anosmia_ms.csv b/google_health/cache/Data_736_anosmia_ms.csv index 6553bc9ae..9fb3738ed 100644 --- a/google_health/cache/Data_736_anosmia_ms.csv +++ b/google_health/cache/Data_736_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 736,2020-05-13,0.00000000 736,2020-05-14,0.00000000 736,2020-05-15,0.00000000 +736,2020-05-16,0.00000000 +736,2020-05-17,0.00000000 +736,2020-05-18,0.00000000 +736,2020-05-19,0.00000000 +736,2020-05-20,0.00000000 +736,2020-05-21,0.00000000 +736,2020-05-22,0.00000000 +736,2020-05-23,0.00000000 +736,2020-05-24,0.00000000 +736,2020-05-25,0.00000000 +736,2020-05-26,0.00000000 +736,2020-05-27,0.00000000 +736,2020-05-28,0.00000000 +736,2020-05-29,0.00000000 +736,2020-05-30,0.00000000 +736,2020-05-31,0.00000000 +736,2020-06-01,0.00000000 +736,2020-06-02,0.00000000 +736,2020-06-03,0.00000000 +736,2020-06-04,0.00000000 +736,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_737_anosmia_ms.csv b/google_health/cache/Data_737_anosmia_ms.csv index baf83add1..563b079a1 100644 --- a/google_health/cache/Data_737_anosmia_ms.csv +++ b/google_health/cache/Data_737_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 737,2020-05-13,0.00000000 737,2020-05-14,0.00000000 737,2020-05-15,0.00000000 +737,2020-05-16,0.00000000 +737,2020-05-17,0.00000000 +737,2020-05-18,0.00000000 +737,2020-05-19,0.00000000 +737,2020-05-20,0.00000000 +737,2020-05-21,0.00000000 +737,2020-05-22,0.00000000 +737,2020-05-23,0.00000000 +737,2020-05-24,0.00000000 +737,2020-05-25,0.00000000 +737,2020-05-26,0.00000000 +737,2020-05-27,0.00000000 +737,2020-05-28,0.00000000 +737,2020-05-29,0.00000000 +737,2020-05-30,0.00000000 +737,2020-05-31,0.00000000 +737,2020-06-01,0.00000000 +737,2020-06-02,0.00000000 +737,2020-06-03,0.00000000 +737,2020-06-04,0.00000000 +737,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_740_anosmia_ms.csv b/google_health/cache/Data_740_anosmia_ms.csv index 050ebbaa7..8a1a8002a 100644 --- a/google_health/cache/Data_740_anosmia_ms.csv +++ b/google_health/cache/Data_740_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 740,2020-05-13,0.00000000 740,2020-05-14,0.00000000 740,2020-05-15,0.00000000 +740,2020-05-16,0.00000000 +740,2020-05-17,0.00000000 +740,2020-05-18,0.00000000 +740,2020-05-19,0.00000000 +740,2020-05-20,0.00000000 +740,2020-05-21,0.00000000 +740,2020-05-22,0.00000000 +740,2020-05-23,0.00000000 +740,2020-05-24,0.00000000 +740,2020-05-25,0.00000000 +740,2020-05-26,0.00000000 +740,2020-05-27,0.00000000 +740,2020-05-28,0.00000000 +740,2020-05-29,0.00000000 +740,2020-05-30,0.00000000 +740,2020-05-31,0.00000000 +740,2020-06-01,0.00000000 +740,2020-06-02,0.00000000 +740,2020-06-03,0.00000000 +740,2020-06-04,0.00000000 +740,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_743_anosmia_ms.csv b/google_health/cache/Data_743_anosmia_ms.csv index 507f5a8c6..b80165596 100644 --- a/google_health/cache/Data_743_anosmia_ms.csv +++ b/google_health/cache/Data_743_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 743,2020-05-13,0.00000000 743,2020-05-14,0.00000000 743,2020-05-15,0.00000000 +743,2020-05-16,0.00000000 +743,2020-05-17,0.00000000 +743,2020-05-18,0.00000000 +743,2020-05-19,0.00000000 +743,2020-05-20,0.00000000 +743,2020-05-21,0.00000000 +743,2020-05-22,0.00000000 +743,2020-05-23,0.00000000 +743,2020-05-24,0.00000000 +743,2020-05-25,5141.38817481 +743,2020-05-26,0.00000000 +743,2020-05-27,0.00000000 +743,2020-05-28,0.00000000 +743,2020-05-29,0.00000000 +743,2020-05-30,0.00000000 +743,2020-05-31,0.00000000 +743,2020-06-01,0.00000000 +743,2020-06-02,0.00000000 +743,2020-06-03,0.00000000 +743,2020-06-04,0.00000000 +743,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_744_anosmia_ms.csv b/google_health/cache/Data_744_anosmia_ms.csv index 61e67885a..be882fff5 100644 --- a/google_health/cache/Data_744_anosmia_ms.csv +++ b/google_health/cache/Data_744_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 744,2020-05-13,0.00000000 744,2020-05-14,0.00000000 744,2020-05-15,0.00000000 +744,2020-05-16,0.00000000 +744,2020-05-17,0.00000000 +744,2020-05-18,1533.03193212 +744,2020-05-19,0.00000000 +744,2020-05-20,0.00000000 +744,2020-05-21,0.00000000 +744,2020-05-22,0.00000000 +744,2020-05-23,0.00000000 +744,2020-05-24,0.00000000 +744,2020-05-25,0.00000000 +744,2020-05-26,0.00000000 +744,2020-05-27,0.00000000 +744,2020-05-28,0.00000000 +744,2020-05-29,0.00000000 +744,2020-05-30,0.00000000 +744,2020-05-31,0.00000000 +744,2020-06-01,0.00000000 +744,2020-06-02,0.00000000 +744,2020-06-03,0.00000000 +744,2020-06-04,0.00000000 +744,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_745_anosmia_ms.csv b/google_health/cache/Data_745_anosmia_ms.csv index 2416f2fb3..4653733b8 100644 --- a/google_health/cache/Data_745_anosmia_ms.csv +++ b/google_health/cache/Data_745_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 745,2020-05-13,0.00000000 745,2020-05-14,0.00000000 745,2020-05-15,0.00000000 +745,2020-05-16,0.00000000 +745,2020-05-17,0.00000000 +745,2020-05-18,0.00000000 +745,2020-05-19,0.00000000 +745,2020-05-20,0.00000000 +745,2020-05-21,0.00000000 +745,2020-05-22,0.00000000 +745,2020-05-23,0.00000000 +745,2020-05-24,0.00000000 +745,2020-05-25,0.00000000 +745,2020-05-26,0.00000000 +745,2020-05-27,0.00000000 +745,2020-05-28,0.00000000 +745,2020-05-29,0.00000000 +745,2020-05-30,0.00000000 +745,2020-05-31,0.00000000 +745,2020-06-01,0.00000000 +745,2020-06-02,0.00000000 +745,2020-06-03,0.00000000 +745,2020-06-04,0.00000000 +745,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_746_anosmia_ms.csv b/google_health/cache/Data_746_anosmia_ms.csv index f2c9a384b..9b7250dec 100644 --- a/google_health/cache/Data_746_anosmia_ms.csv +++ b/google_health/cache/Data_746_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 746,2020-05-13,0.00000000 746,2020-05-14,0.00000000 746,2020-05-15,0.00000000 +746,2020-05-16,0.00000000 +746,2020-05-17,0.00000000 +746,2020-05-18,0.00000000 +746,2020-05-19,0.00000000 +746,2020-05-20,0.00000000 +746,2020-05-21,0.00000000 +746,2020-05-22,0.00000000 +746,2020-05-23,0.00000000 +746,2020-05-24,0.00000000 +746,2020-05-25,0.00000000 +746,2020-05-26,0.00000000 +746,2020-05-27,0.00000000 +746,2020-05-28,0.00000000 +746,2020-05-29,0.00000000 +746,2020-05-30,0.00000000 +746,2020-05-31,0.00000000 +746,2020-06-01,0.00000000 +746,2020-06-02,0.00000000 +746,2020-06-03,0.00000000 +746,2020-06-04,0.00000000 +746,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_747_anosmia_ms.csv b/google_health/cache/Data_747_anosmia_ms.csv index b56c48451..e6bf77bfc 100644 --- a/google_health/cache/Data_747_anosmia_ms.csv +++ b/google_health/cache/Data_747_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 747,2020-05-13,0.00000000 747,2020-05-14,0.00000000 747,2020-05-15,0.00000000 +747,2020-05-16,0.00000000 +747,2020-05-17,0.00000000 +747,2020-05-18,0.00000000 +747,2020-05-19,0.00000000 +747,2020-05-20,0.00000000 +747,2020-05-21,0.00000000 +747,2020-05-22,0.00000000 +747,2020-05-23,0.00000000 +747,2020-05-24,0.00000000 +747,2020-05-25,0.00000000 +747,2020-05-26,0.00000000 +747,2020-05-27,0.00000000 +747,2020-05-28,0.00000000 +747,2020-05-29,0.00000000 +747,2020-05-30,0.00000000 +747,2020-05-31,0.00000000 +747,2020-06-01,0.00000000 +747,2020-06-02,0.00000000 +747,2020-06-03,0.00000000 +747,2020-06-04,0.00000000 +747,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_749_anosmia_ms.csv b/google_health/cache/Data_749_anosmia_ms.csv index e1759cfa8..32b395bc0 100644 --- a/google_health/cache/Data_749_anosmia_ms.csv +++ b/google_health/cache/Data_749_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 749,2020-05-13,0.00000000 749,2020-05-14,0.00000000 749,2020-05-15,0.00000000 +749,2020-05-16,0.00000000 +749,2020-05-17,0.00000000 +749,2020-05-18,0.00000000 +749,2020-05-19,0.00000000 +749,2020-05-20,0.00000000 +749,2020-05-21,0.00000000 +749,2020-05-22,0.00000000 +749,2020-05-23,0.00000000 +749,2020-05-24,0.00000000 +749,2020-05-25,0.00000000 +749,2020-05-26,0.00000000 +749,2020-05-27,0.00000000 +749,2020-05-28,0.00000000 +749,2020-05-29,0.00000000 +749,2020-05-30,0.00000000 +749,2020-05-31,0.00000000 +749,2020-06-01,0.00000000 +749,2020-06-02,0.00000000 +749,2020-06-03,0.00000000 +749,2020-06-04,0.00000000 +749,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_751_anosmia_ms.csv b/google_health/cache/Data_751_anosmia_ms.csv index 802db6f01..9ef170808 100644 --- a/google_health/cache/Data_751_anosmia_ms.csv +++ b/google_health/cache/Data_751_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 751,2020-05-13,699.43316900 751,2020-05-14,0.00000000 751,2020-05-15,1040.06835192 +751,2020-05-16,416.76292312 +751,2020-05-17,0.00000000 +751,2020-05-18,548.52520135 +751,2020-05-19,715.23234562 +751,2020-05-20,706.67438026 +751,2020-05-21,1482.98279053 +751,2020-05-22,386.04770978 +751,2020-05-23,884.84874961 +751,2020-05-24,0.00000000 +751,2020-05-25,412.54725359 +751,2020-05-26,0.00000000 +751,2020-05-27,361.85651669 +751,2020-05-28,373.82751822 +751,2020-05-29,373.87362171 +751,2020-05-30,0.00000000 +751,2020-05-31,0.00000000 +751,2020-06-01,0.00000000 +751,2020-06-02,715.76527251 +751,2020-06-03,0.00000000 +751,2020-06-04,346.74768998 +751,2020-06-05,1093.53363983 diff --git a/google_health/cache/Data_752_anosmia_ms.csv b/google_health/cache/Data_752_anosmia_ms.csv index 40d7e6470..75226667f 100644 --- a/google_health/cache/Data_752_anosmia_ms.csv +++ b/google_health/cache/Data_752_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 752,2020-05-13,0.00000000 752,2020-05-14,0.00000000 752,2020-05-15,0.00000000 +752,2020-05-16,0.00000000 +752,2020-05-17,0.00000000 +752,2020-05-18,0.00000000 +752,2020-05-19,0.00000000 +752,2020-05-20,0.00000000 +752,2020-05-21,0.00000000 +752,2020-05-22,0.00000000 +752,2020-05-23,0.00000000 +752,2020-05-24,4299.22613929 +752,2020-05-25,0.00000000 +752,2020-05-26,0.00000000 +752,2020-05-27,0.00000000 +752,2020-05-28,0.00000000 +752,2020-05-29,1984.91464867 +752,2020-05-30,0.00000000 +752,2020-05-31,2086.81135225 +752,2020-06-01,3851.33834007 +752,2020-06-02,0.00000000 +752,2020-06-03,1853.22461082 +752,2020-06-04,0.00000000 +752,2020-06-05,1911.67273404 diff --git a/google_health/cache/Data_753_anosmia_ms.csv b/google_health/cache/Data_753_anosmia_ms.csv index 15275fd93..270705311 100644 --- a/google_health/cache/Data_753_anosmia_ms.csv +++ b/google_health/cache/Data_753_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 753,2020-05-13,0.00000000 753,2020-05-14,630.98156953 753,2020-05-15,0.00000000 +753,2020-05-16,1059.29460209 +753,2020-05-17,0.00000000 +753,2020-05-18,0.00000000 +753,2020-05-19,317.82248069 +753,2020-05-20,0.00000000 +753,2020-05-21,0.00000000 +753,2020-05-22,0.00000000 +753,2020-05-23,731.94560201 +753,2020-05-24,1485.55078385 +753,2020-05-25,1086.48797358 +753,2020-05-26,998.35958934 +753,2020-05-27,0.00000000 +753,2020-05-28,324.84999099 +753,2020-05-29,0.00000000 +753,2020-05-30,350.71613703 +753,2020-05-31,856.44371730 +753,2020-06-01,622.71752607 +753,2020-06-02,977.41712207 +753,2020-06-03,1225.00864166 +753,2020-06-04,0.00000000 +753,2020-06-05,1558.49831318 diff --git a/google_health/cache/Data_754_anosmia_ms.csv b/google_health/cache/Data_754_anosmia_ms.csv index d57749ea8..7b071e5f5 100644 --- a/google_health/cache/Data_754_anosmia_ms.csv +++ b/google_health/cache/Data_754_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 754,2020-05-13,0.00000000 754,2020-05-14,0.00000000 754,2020-05-15,0.00000000 +754,2020-05-16,0.00000000 +754,2020-05-17,0.00000000 +754,2020-05-18,0.00000000 +754,2020-05-19,0.00000000 +754,2020-05-20,0.00000000 +754,2020-05-21,0.00000000 +754,2020-05-22,0.00000000 +754,2020-05-23,0.00000000 +754,2020-05-24,0.00000000 +754,2020-05-25,0.00000000 +754,2020-05-26,0.00000000 +754,2020-05-27,30864.19753086 +754,2020-05-28,0.00000000 +754,2020-05-29,0.00000000 +754,2020-05-30,0.00000000 +754,2020-05-31,0.00000000 +754,2020-06-01,0.00000000 +754,2020-06-02,0.00000000 +754,2020-06-03,0.00000000 +754,2020-06-04,0.00000000 +754,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_755_anosmia_ms.csv b/google_health/cache/Data_755_anosmia_ms.csv index a20307d4a..c6470828c 100644 --- a/google_health/cache/Data_755_anosmia_ms.csv +++ b/google_health/cache/Data_755_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 755,2020-05-13,0.00000000 755,2020-05-14,0.00000000 755,2020-05-15,0.00000000 +755,2020-05-16,0.00000000 +755,2020-05-17,0.00000000 +755,2020-05-18,0.00000000 +755,2020-05-19,0.00000000 +755,2020-05-20,0.00000000 +755,2020-05-21,0.00000000 +755,2020-05-22,0.00000000 +755,2020-05-23,0.00000000 +755,2020-05-24,0.00000000 +755,2020-05-25,0.00000000 +755,2020-05-26,0.00000000 +755,2020-05-27,0.00000000 +755,2020-05-28,0.00000000 +755,2020-05-29,0.00000000 +755,2020-05-30,0.00000000 +755,2020-05-31,0.00000000 +755,2020-06-01,0.00000000 +755,2020-06-02,0.00000000 +755,2020-06-03,0.00000000 +755,2020-06-04,0.00000000 +755,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_756_anosmia_ms.csv b/google_health/cache/Data_756_anosmia_ms.csv index 3d80ccf80..b2ecb6cbf 100644 --- a/google_health/cache/Data_756_anosmia_ms.csv +++ b/google_health/cache/Data_756_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 756,2020-05-13,0.00000000 756,2020-05-14,0.00000000 756,2020-05-15,0.00000000 +756,2020-05-16,0.00000000 +756,2020-05-17,0.00000000 +756,2020-05-18,0.00000000 +756,2020-05-19,0.00000000 +756,2020-05-20,0.00000000 +756,2020-05-21,0.00000000 +756,2020-05-22,0.00000000 +756,2020-05-23,0.00000000 +756,2020-05-24,0.00000000 +756,2020-05-25,0.00000000 +756,2020-05-26,0.00000000 +756,2020-05-27,0.00000000 +756,2020-05-28,0.00000000 +756,2020-05-29,0.00000000 +756,2020-05-30,0.00000000 +756,2020-05-31,0.00000000 +756,2020-06-01,0.00000000 +756,2020-06-02,0.00000000 +756,2020-06-03,0.00000000 +756,2020-06-04,0.00000000 +756,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_757_anosmia_ms.csv b/google_health/cache/Data_757_anosmia_ms.csv index f0b7b6975..b1e34edf0 100644 --- a/google_health/cache/Data_757_anosmia_ms.csv +++ b/google_health/cache/Data_757_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 757,2020-05-13,0.00000000 757,2020-05-14,0.00000000 757,2020-05-15,0.00000000 +757,2020-05-16,0.00000000 +757,2020-05-17,0.00000000 +757,2020-05-18,2154.80094845 +757,2020-05-19,0.00000000 +757,2020-05-20,0.00000000 +757,2020-05-21,0.00000000 +757,2020-05-22,0.00000000 +757,2020-05-23,0.00000000 +757,2020-05-24,0.00000000 +757,2020-05-25,0.00000000 +757,2020-05-26,0.00000000 +757,2020-05-27,0.00000000 +757,2020-05-28,0.00000000 +757,2020-05-29,0.00000000 +757,2020-05-30,0.00000000 +757,2020-05-31,0.00000000 +757,2020-06-01,0.00000000 +757,2020-06-02,0.00000000 +757,2020-06-03,0.00000000 +757,2020-06-04,0.00000000 +757,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_758_anosmia_ms.csv b/google_health/cache/Data_758_anosmia_ms.csv index 12bb67b27..620089e96 100644 --- a/google_health/cache/Data_758_anosmia_ms.csv +++ b/google_health/cache/Data_758_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 758,2020-05-13,0.00000000 758,2020-05-14,0.00000000 758,2020-05-15,0.00000000 +758,2020-05-16,0.00000000 +758,2020-05-17,0.00000000 +758,2020-05-18,0.00000000 +758,2020-05-19,0.00000000 +758,2020-05-20,0.00000000 +758,2020-05-21,0.00000000 +758,2020-05-22,0.00000000 +758,2020-05-23,0.00000000 +758,2020-05-24,0.00000000 +758,2020-05-25,0.00000000 +758,2020-05-26,11655.01165501 +758,2020-05-27,0.00000000 +758,2020-05-28,0.00000000 +758,2020-05-29,0.00000000 +758,2020-05-30,0.00000000 +758,2020-05-31,0.00000000 +758,2020-06-01,0.00000000 +758,2020-06-02,0.00000000 +758,2020-06-03,0.00000000 +758,2020-06-04,0.00000000 +758,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_759_anosmia_ms.csv b/google_health/cache/Data_759_anosmia_ms.csv index 70497c64d..6c14460b5 100644 --- a/google_health/cache/Data_759_anosmia_ms.csv +++ b/google_health/cache/Data_759_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 759,2020-05-13,0.00000000 759,2020-05-14,0.00000000 759,2020-05-15,0.00000000 +759,2020-05-16,0.00000000 +759,2020-05-17,0.00000000 +759,2020-05-18,0.00000000 +759,2020-05-19,0.00000000 +759,2020-05-20,0.00000000 +759,2020-05-21,0.00000000 +759,2020-05-22,0.00000000 +759,2020-05-23,0.00000000 +759,2020-05-24,0.00000000 +759,2020-05-25,0.00000000 +759,2020-05-26,0.00000000 +759,2020-05-27,0.00000000 +759,2020-05-28,0.00000000 +759,2020-05-29,0.00000000 +759,2020-05-30,0.00000000 +759,2020-05-31,0.00000000 +759,2020-06-01,0.00000000 +759,2020-06-02,0.00000000 +759,2020-06-03,0.00000000 +759,2020-06-04,0.00000000 +759,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_760_anosmia_ms.csv b/google_health/cache/Data_760_anosmia_ms.csv index 30220ac25..dd70ee770 100644 --- a/google_health/cache/Data_760_anosmia_ms.csv +++ b/google_health/cache/Data_760_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 760,2020-05-13,0.00000000 760,2020-05-14,0.00000000 760,2020-05-15,0.00000000 +760,2020-05-16,0.00000000 +760,2020-05-17,0.00000000 +760,2020-05-18,0.00000000 +760,2020-05-19,0.00000000 +760,2020-05-20,0.00000000 +760,2020-05-21,0.00000000 +760,2020-05-22,0.00000000 +760,2020-05-23,0.00000000 +760,2020-05-24,0.00000000 +760,2020-05-25,0.00000000 +760,2020-05-26,0.00000000 +760,2020-05-27,0.00000000 +760,2020-05-28,0.00000000 +760,2020-05-29,0.00000000 +760,2020-05-30,0.00000000 +760,2020-05-31,0.00000000 +760,2020-06-01,0.00000000 +760,2020-06-02,0.00000000 +760,2020-06-03,0.00000000 +760,2020-06-04,0.00000000 +760,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_762_anosmia_ms.csv b/google_health/cache/Data_762_anosmia_ms.csv index 70ddd1c57..d3d51887f 100644 --- a/google_health/cache/Data_762_anosmia_ms.csv +++ b/google_health/cache/Data_762_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 762,2020-05-13,0.00000000 762,2020-05-14,0.00000000 762,2020-05-15,0.00000000 +762,2020-05-16,0.00000000 +762,2020-05-17,0.00000000 +762,2020-05-18,0.00000000 +762,2020-05-19,0.00000000 +762,2020-05-20,0.00000000 +762,2020-05-21,0.00000000 +762,2020-05-22,0.00000000 +762,2020-05-23,0.00000000 +762,2020-05-24,0.00000000 +762,2020-05-25,0.00000000 +762,2020-05-26,0.00000000 +762,2020-05-27,0.00000000 +762,2020-05-28,0.00000000 +762,2020-05-29,0.00000000 +762,2020-05-30,0.00000000 +762,2020-05-31,0.00000000 +762,2020-06-01,0.00000000 +762,2020-06-02,0.00000000 +762,2020-06-03,0.00000000 +762,2020-06-04,0.00000000 +762,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_764_anosmia_ms.csv b/google_health/cache/Data_764_anosmia_ms.csv index d198ae475..2d8b5165c 100644 --- a/google_health/cache/Data_764_anosmia_ms.csv +++ b/google_health/cache/Data_764_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 764,2020-05-13,0.00000000 764,2020-05-14,0.00000000 764,2020-05-15,0.00000000 +764,2020-05-16,0.00000000 +764,2020-05-17,0.00000000 +764,2020-05-18,0.00000000 +764,2020-05-19,0.00000000 +764,2020-05-20,0.00000000 +764,2020-05-21,0.00000000 +764,2020-05-22,0.00000000 +764,2020-05-23,0.00000000 +764,2020-05-24,0.00000000 +764,2020-05-25,0.00000000 +764,2020-05-26,0.00000000 +764,2020-05-27,0.00000000 +764,2020-05-28,0.00000000 +764,2020-05-29,0.00000000 +764,2020-05-30,0.00000000 +764,2020-05-31,0.00000000 +764,2020-06-01,0.00000000 +764,2020-06-02,0.00000000 +764,2020-06-03,0.00000000 +764,2020-06-04,0.00000000 +764,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_765_anosmia_ms.csv b/google_health/cache/Data_765_anosmia_ms.csv index 579bdcc30..be61dcd2a 100644 --- a/google_health/cache/Data_765_anosmia_ms.csv +++ b/google_health/cache/Data_765_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 765,2020-05-13,0.00000000 765,2020-05-14,0.00000000 765,2020-05-15,0.00000000 +765,2020-05-16,0.00000000 +765,2020-05-17,0.00000000 +765,2020-05-18,0.00000000 +765,2020-05-19,1847.40439682 +765,2020-05-20,0.00000000 +765,2020-05-21,0.00000000 +765,2020-05-22,0.00000000 +765,2020-05-23,0.00000000 +765,2020-05-24,0.00000000 +765,2020-05-25,2034.58799593 +765,2020-05-26,3938.55848759 +765,2020-05-27,0.00000000 +765,2020-05-28,0.00000000 +765,2020-05-29,0.00000000 +765,2020-05-30,0.00000000 +765,2020-05-31,2122.69157291 +765,2020-06-01,0.00000000 +765,2020-06-02,0.00000000 +765,2020-06-03,0.00000000 +765,2020-06-04,0.00000000 +765,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_766_anosmia_ms.csv b/google_health/cache/Data_766_anosmia_ms.csv index 77619659d..4cf29fbf8 100644 --- a/google_health/cache/Data_766_anosmia_ms.csv +++ b/google_health/cache/Data_766_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 766,2020-05-13,0.00000000 766,2020-05-14,0.00000000 766,2020-05-15,0.00000000 +766,2020-05-16,0.00000000 +766,2020-05-17,0.00000000 +766,2020-05-18,0.00000000 +766,2020-05-19,0.00000000 +766,2020-05-20,0.00000000 +766,2020-05-21,0.00000000 +766,2020-05-22,0.00000000 +766,2020-05-23,0.00000000 +766,2020-05-24,0.00000000 +766,2020-05-25,0.00000000 +766,2020-05-26,0.00000000 +766,2020-05-27,0.00000000 +766,2020-05-28,0.00000000 +766,2020-05-29,0.00000000 +766,2020-05-30,0.00000000 +766,2020-05-31,0.00000000 +766,2020-06-01,0.00000000 +766,2020-06-02,0.00000000 +766,2020-06-03,0.00000000 +766,2020-06-04,0.00000000 +766,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_767_anosmia_ms.csv b/google_health/cache/Data_767_anosmia_ms.csv index 144f74f5a..c0859b1b5 100644 --- a/google_health/cache/Data_767_anosmia_ms.csv +++ b/google_health/cache/Data_767_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 767,2020-05-13,0.00000000 767,2020-05-14,0.00000000 767,2020-05-15,0.00000000 +767,2020-05-16,0.00000000 +767,2020-05-17,0.00000000 +767,2020-05-18,0.00000000 +767,2020-05-19,0.00000000 +767,2020-05-20,0.00000000 +767,2020-05-21,0.00000000 +767,2020-05-22,0.00000000 +767,2020-05-23,0.00000000 +767,2020-05-24,0.00000000 +767,2020-05-25,0.00000000 +767,2020-05-26,0.00000000 +767,2020-05-27,0.00000000 +767,2020-05-28,0.00000000 +767,2020-05-29,0.00000000 +767,2020-05-30,0.00000000 +767,2020-05-31,0.00000000 +767,2020-06-01,0.00000000 +767,2020-06-02,0.00000000 +767,2020-06-03,0.00000000 +767,2020-06-04,0.00000000 +767,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_770_anosmia_ms.csv b/google_health/cache/Data_770_anosmia_ms.csv index 2251af511..f025caa77 100644 --- a/google_health/cache/Data_770_anosmia_ms.csv +++ b/google_health/cache/Data_770_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 770,2020-05-13,0.00000000 770,2020-05-14,523.29789694 770,2020-05-15,0.00000000 +770,2020-05-16,1291.04330811 +770,2020-05-17,0.00000000 +770,2020-05-18,1054.32200296 +770,2020-05-19,0.00000000 +770,2020-05-20,0.00000000 +770,2020-05-21,567.45040166 +770,2020-05-22,0.00000000 +770,2020-05-23,0.00000000 +770,2020-05-24,0.00000000 +770,2020-05-25,0.00000000 +770,2020-05-26,2287.48090572 +770,2020-05-27,1113.26227121 +770,2020-05-28,0.00000000 +770,2020-05-29,0.00000000 +770,2020-05-30,1924.34262452 +770,2020-05-31,1263.70505739 +770,2020-06-01,1686.22156622 +770,2020-06-02,565.39246802 +770,2020-06-03,541.75066530 +770,2020-06-04,1618.64216821 +770,2020-06-05,542.50933190 diff --git a/google_health/cache/Data_771_anosmia_ms.csv b/google_health/cache/Data_771_anosmia_ms.csv index 7d087900c..608244e3e 100644 --- a/google_health/cache/Data_771_anosmia_ms.csv +++ b/google_health/cache/Data_771_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 771,2020-05-13,6123.69871402 771,2020-05-14,5841.12149533 771,2020-05-15,0.00000000 +771,2020-05-16,0.00000000 +771,2020-05-17,0.00000000 +771,2020-05-18,0.00000000 +771,2020-05-19,0.00000000 +771,2020-05-20,0.00000000 +771,2020-05-21,0.00000000 +771,2020-05-22,0.00000000 +771,2020-05-23,0.00000000 +771,2020-05-24,0.00000000 +771,2020-05-25,0.00000000 +771,2020-05-26,0.00000000 +771,2020-05-27,12269.93865031 +771,2020-05-28,0.00000000 +771,2020-05-29,0.00000000 +771,2020-05-30,0.00000000 +771,2020-05-31,6779.66101695 +771,2020-06-01,0.00000000 +771,2020-06-02,0.00000000 +771,2020-06-03,0.00000000 +771,2020-06-04,12143.29083182 +771,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_773_anosmia_ms.csv b/google_health/cache/Data_773_anosmia_ms.csv index b2ea30497..f241a3de7 100644 --- a/google_health/cache/Data_773_anosmia_ms.csv +++ b/google_health/cache/Data_773_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 773,2020-05-13,0.00000000 773,2020-05-14,0.00000000 773,2020-05-15,0.00000000 +773,2020-05-16,0.00000000 +773,2020-05-17,0.00000000 +773,2020-05-18,0.00000000 +773,2020-05-19,0.00000000 +773,2020-05-20,0.00000000 +773,2020-05-21,0.00000000 +773,2020-05-22,0.00000000 +773,2020-05-23,0.00000000 +773,2020-05-24,0.00000000 +773,2020-05-25,0.00000000 +773,2020-05-26,0.00000000 +773,2020-05-27,0.00000000 +773,2020-05-28,0.00000000 +773,2020-05-29,0.00000000 +773,2020-05-30,0.00000000 +773,2020-05-31,0.00000000 +773,2020-06-01,0.00000000 +773,2020-06-02,0.00000000 +773,2020-06-03,0.00000000 +773,2020-06-04,0.00000000 +773,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_789_anosmia_ms.csv b/google_health/cache/Data_789_anosmia_ms.csv index 29a40b49a..93c8b12e8 100644 --- a/google_health/cache/Data_789_anosmia_ms.csv +++ b/google_health/cache/Data_789_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 789,2020-05-13,1647.45204068 789,2020-05-14,0.00000000 789,2020-05-15,0.00000000 +789,2020-05-16,0.00000000 +789,2020-05-17,0.00000000 +789,2020-05-18,0.00000000 +789,2020-05-19,0.00000000 +789,2020-05-20,3460.78756200 +789,2020-05-21,3683.22260493 +789,2020-05-22,0.00000000 +789,2020-05-23,0.00000000 +789,2020-05-24,0.00000000 +789,2020-05-25,7748.93452150 +789,2020-05-26,0.00000000 +789,2020-05-27,1779.99288003 +789,2020-05-28,1750.39383861 +789,2020-05-29,0.00000000 +789,2020-05-30,0.00000000 +789,2020-05-31,0.00000000 +789,2020-06-01,0.00000000 +789,2020-06-02,3613.28060878 +789,2020-06-03,0.00000000 +789,2020-06-04,0.00000000 +789,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_790_anosmia_ms.csv b/google_health/cache/Data_790_anosmia_ms.csv index ae5f45149..806fcd42a 100644 --- a/google_health/cache/Data_790_anosmia_ms.csv +++ b/google_health/cache/Data_790_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 790,2020-05-13,0.00000000 790,2020-05-14,0.00000000 790,2020-05-15,0.00000000 +790,2020-05-16,2405.68252948 +790,2020-05-17,0.00000000 +790,2020-05-18,2168.76047379 +790,2020-05-19,0.00000000 +790,2020-05-20,1088.87491507 +790,2020-05-21,0.00000000 +790,2020-05-22,0.00000000 +790,2020-05-23,2538.63767680 +790,2020-05-24,1309.70429370 +790,2020-05-25,0.00000000 +790,2020-05-26,0.00000000 +790,2020-05-27,0.00000000 +790,2020-05-28,0.00000000 +790,2020-05-29,0.00000000 +790,2020-05-30,0.00000000 +790,2020-05-31,1215.69744881 +790,2020-06-01,0.00000000 +790,2020-06-02,0.00000000 +790,2020-06-03,0.00000000 +790,2020-06-04,3118.51227835 +790,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_798_anosmia_ms.csv b/google_health/cache/Data_798_anosmia_ms.csv index 10bfac161..2f40eafa5 100644 --- a/google_health/cache/Data_798_anosmia_ms.csv +++ b/google_health/cache/Data_798_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 798,2020-05-13,0.00000000 798,2020-05-14,0.00000000 798,2020-05-15,0.00000000 +798,2020-05-16,0.00000000 +798,2020-05-17,0.00000000 +798,2020-05-18,0.00000000 +798,2020-05-19,0.00000000 +798,2020-05-20,0.00000000 +798,2020-05-21,0.00000000 +798,2020-05-22,0.00000000 +798,2020-05-23,0.00000000 +798,2020-05-24,0.00000000 +798,2020-05-25,0.00000000 +798,2020-05-26,0.00000000 +798,2020-05-27,0.00000000 +798,2020-05-28,0.00000000 +798,2020-05-29,0.00000000 +798,2020-05-30,0.00000000 +798,2020-05-31,0.00000000 +798,2020-06-01,0.00000000 +798,2020-06-02,0.00000000 +798,2020-06-03,0.00000000 +798,2020-06-04,0.00000000 +798,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_800_anosmia_ms.csv b/google_health/cache/Data_800_anosmia_ms.csv index ecb48fafb..cff2c3a57 100644 --- a/google_health/cache/Data_800_anosmia_ms.csv +++ b/google_health/cache/Data_800_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 800,2020-05-13,0.00000000 800,2020-05-14,2865.32951289 800,2020-05-15,0.00000000 +800,2020-05-16,0.00000000 +800,2020-05-17,0.00000000 +800,2020-05-18,0.00000000 +800,2020-05-19,0.00000000 +800,2020-05-20,0.00000000 +800,2020-05-21,0.00000000 +800,2020-05-22,0.00000000 +800,2020-05-23,0.00000000 +800,2020-05-24,3370.40781935 +800,2020-05-25,0.00000000 +800,2020-05-26,0.00000000 +800,2020-05-27,0.00000000 +800,2020-05-28,0.00000000 +800,2020-05-29,0.00000000 +800,2020-05-30,0.00000000 +800,2020-05-31,0.00000000 +800,2020-06-01,0.00000000 +800,2020-06-02,0.00000000 +800,2020-06-03,2821.67042889 +800,2020-06-04,0.00000000 +800,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_801_anosmia_ms.csv b/google_health/cache/Data_801_anosmia_ms.csv index b814b18be..b0335cd20 100644 --- a/google_health/cache/Data_801_anosmia_ms.csv +++ b/google_health/cache/Data_801_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 801,2020-05-13,0.00000000 801,2020-05-14,0.00000000 801,2020-05-15,0.00000000 +801,2020-05-16,0.00000000 +801,2020-05-17,0.00000000 +801,2020-05-18,0.00000000 +801,2020-05-19,0.00000000 +801,2020-05-20,0.00000000 +801,2020-05-21,0.00000000 +801,2020-05-22,0.00000000 +801,2020-05-23,0.00000000 +801,2020-05-24,0.00000000 +801,2020-05-25,3589.37544867 +801,2020-05-26,0.00000000 +801,2020-05-27,0.00000000 +801,2020-05-28,0.00000000 +801,2020-05-29,0.00000000 +801,2020-05-30,0.00000000 +801,2020-05-31,0.00000000 +801,2020-06-01,0.00000000 +801,2020-06-02,0.00000000 +801,2020-06-03,0.00000000 +801,2020-06-04,0.00000000 +801,2020-06-05,3139.71742543 diff --git a/google_health/cache/Data_802_anosmia_ms.csv b/google_health/cache/Data_802_anosmia_ms.csv index 2aae4d41f..5317841d0 100644 --- a/google_health/cache/Data_802_anosmia_ms.csv +++ b/google_health/cache/Data_802_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 802,2020-05-13,0.00000000 802,2020-05-14,0.00000000 802,2020-05-15,0.00000000 +802,2020-05-16,0.00000000 +802,2020-05-17,0.00000000 +802,2020-05-18,0.00000000 +802,2020-05-19,0.00000000 +802,2020-05-20,0.00000000 +802,2020-05-21,0.00000000 +802,2020-05-22,0.00000000 +802,2020-05-23,0.00000000 +802,2020-05-24,0.00000000 +802,2020-05-25,0.00000000 +802,2020-05-26,0.00000000 +802,2020-05-27,0.00000000 +802,2020-05-28,0.00000000 +802,2020-05-29,0.00000000 +802,2020-05-30,0.00000000 +802,2020-05-31,0.00000000 +802,2020-06-01,0.00000000 +802,2020-06-02,0.00000000 +802,2020-06-03,0.00000000 +802,2020-06-04,0.00000000 +802,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_803_anosmia_ms.csv b/google_health/cache/Data_803_anosmia_ms.csv index f03c7c402..14da3e065 100644 --- a/google_health/cache/Data_803_anosmia_ms.csv +++ b/google_health/cache/Data_803_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 803,2020-05-13,347.69336957 803,2020-05-14,290.63979913 803,2020-05-15,266.30346882 +803,2020-05-16,0.00000000 +803,2020-05-17,204.56139897 +803,2020-05-18,526.46480543 +803,2020-05-19,266.99255076 +803,2020-05-20,354.76865816 +803,2020-05-21,310.77846078 +803,2020-05-22,409.76064221 +803,2020-05-23,103.79552050 +803,2020-05-24,215.02340301 +803,2020-05-25,207.24629105 +803,2020-05-26,347.70680714 +803,2020-05-27,260.63635260 +803,2020-05-28,87.20920602 +803,2020-05-29,315.92581111 +803,2020-05-30,301.46276820 +803,2020-05-31,420.84630120 +803,2020-06-01,174.39987913 +803,2020-06-02,352.73764065 +803,2020-06-03,424.87684062 +803,2020-06-04,0.00000000 +803,2020-06-05,352.90376441 diff --git a/google_health/cache/Data_804_anosmia_ms.csv b/google_health/cache/Data_804_anosmia_ms.csv index 5d3223c23..b57ac62e0 100644 --- a/google_health/cache/Data_804_anosmia_ms.csv +++ b/google_health/cache/Data_804_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 804,2020-05-13,0.00000000 804,2020-05-14,0.00000000 804,2020-05-15,0.00000000 +804,2020-05-16,0.00000000 +804,2020-05-17,0.00000000 +804,2020-05-18,0.00000000 +804,2020-05-19,0.00000000 +804,2020-05-20,0.00000000 +804,2020-05-21,4873.29434698 +804,2020-05-22,0.00000000 +804,2020-05-23,0.00000000 +804,2020-05-24,0.00000000 +804,2020-05-25,0.00000000 +804,2020-05-26,0.00000000 +804,2020-05-27,0.00000000 +804,2020-05-28,0.00000000 +804,2020-05-29,0.00000000 +804,2020-05-30,0.00000000 +804,2020-05-31,0.00000000 +804,2020-06-01,0.00000000 +804,2020-06-02,0.00000000 +804,2020-06-03,0.00000000 +804,2020-06-04,0.00000000 +804,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_807_anosmia_ms.csv b/google_health/cache/Data_807_anosmia_ms.csv index 50c41a646..850f80023 100644 --- a/google_health/cache/Data_807_anosmia_ms.csv +++ b/google_health/cache/Data_807_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 807,2020-05-13,908.59146744 807,2020-05-14,163.41914367 807,2020-05-15,0.00000000 +807,2020-05-16,212.86758756 +807,2020-05-17,622.78747047 +807,2020-05-18,384.85957015 +807,2020-05-19,248.74893098 +807,2020-05-20,511.14611526 +807,2020-05-21,775.79276365 +807,2020-05-22,531.22906714 +807,2020-05-23,213.32689291 +807,2020-05-24,0.00000000 +807,2020-05-25,405.34567349 +807,2020-05-26,0.00000000 +807,2020-05-27,165.69174817 +807,2020-05-28,0.00000000 +807,2020-05-29,173.87191999 +807,2020-05-30,0.00000000 +807,2020-05-31,205.45163383 +807,2020-06-01,560.97908213 +807,2020-06-02,0.00000000 +807,2020-06-03,498.06629108 +807,2020-06-04,324.98789543 +807,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_810_anosmia_ms.csv b/google_health/cache/Data_810_anosmia_ms.csv index 4457163ec..a4c1655f3 100644 --- a/google_health/cache/Data_810_anosmia_ms.csv +++ b/google_health/cache/Data_810_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 810,2020-05-13,3024.80338778 810,2020-05-14,8831.32175449 810,2020-05-15,0.00000000 +810,2020-05-16,3617.94500724 +810,2020-05-17,0.00000000 +810,2020-05-18,2998.50074963 +810,2020-05-19,2989.53662182 +810,2020-05-20,0.00000000 +810,2020-05-21,0.00000000 +810,2020-05-22,0.00000000 +810,2020-05-23,3665.68914956 +810,2020-05-24,0.00000000 +810,2020-05-25,0.00000000 +810,2020-05-26,0.00000000 +810,2020-05-27,0.00000000 +810,2020-05-28,0.00000000 +810,2020-05-29,0.00000000 +810,2020-05-30,6635.70006636 +810,2020-05-31,0.00000000 +810,2020-06-01,0.00000000 +810,2020-06-02,0.00000000 +810,2020-06-03,0.00000000 +810,2020-06-04,0.00000000 +810,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_811_anosmia_ms.csv b/google_health/cache/Data_811_anosmia_ms.csv index 60dbb89df..645bbf3a5 100644 --- a/google_health/cache/Data_811_anosmia_ms.csv +++ b/google_health/cache/Data_811_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 811,2020-05-13,0.00000000 811,2020-05-14,2560.16385049 811,2020-05-15,2590.67357513 +811,2020-05-16,0.00000000 +811,2020-05-17,0.00000000 +811,2020-05-18,2564.76019492 +811,2020-05-19,0.00000000 +811,2020-05-20,0.00000000 +811,2020-05-21,0.00000000 +811,2020-05-22,0.00000000 +811,2020-05-23,0.00000000 +811,2020-05-24,0.00000000 +811,2020-05-25,0.00000000 +811,2020-05-26,0.00000000 +811,2020-05-27,2648.30508475 +811,2020-05-28,0.00000000 +811,2020-05-29,0.00000000 +811,2020-05-30,0.00000000 +811,2020-05-31,0.00000000 +811,2020-06-01,0.00000000 +811,2020-06-02,0.00000000 +811,2020-06-03,2593.36099585 +811,2020-06-04,0.00000000 +811,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_813_anosmia_ms.csv b/google_health/cache/Data_813_anosmia_ms.csv index 2d4b89f9c..6a6858378 100644 --- a/google_health/cache/Data_813_anosmia_ms.csv +++ b/google_health/cache/Data_813_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 813,2020-05-13,0.00000000 813,2020-05-14,4340.27777778 813,2020-05-15,0.00000000 +813,2020-05-16,0.00000000 +813,2020-05-17,0.00000000 +813,2020-05-18,0.00000000 +813,2020-05-19,0.00000000 +813,2020-05-20,0.00000000 +813,2020-05-21,0.00000000 +813,2020-05-22,0.00000000 +813,2020-05-23,0.00000000 +813,2020-05-24,0.00000000 +813,2020-05-25,0.00000000 +813,2020-05-26,0.00000000 +813,2020-05-27,0.00000000 +813,2020-05-28,0.00000000 +813,2020-05-29,0.00000000 +813,2020-05-30,0.00000000 +813,2020-05-31,0.00000000 +813,2020-06-01,0.00000000 +813,2020-06-02,0.00000000 +813,2020-06-03,0.00000000 +813,2020-06-04,0.00000000 +813,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_819_anosmia_ms.csv b/google_health/cache/Data_819_anosmia_ms.csv index c71d95da3..2f56270e5 100644 --- a/google_health/cache/Data_819_anosmia_ms.csv +++ b/google_health/cache/Data_819_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 819,2020-05-13,0.00000000 819,2020-05-14,0.00000000 819,2020-05-15,301.08982514 +819,2020-05-16,328.31441319 +819,2020-05-17,0.00000000 +819,2020-05-18,444.54563593 +819,2020-05-19,289.26955085 +819,2020-05-20,582.72968144 +819,2020-05-21,587.44995499 +819,2020-05-22,604.26250818 +819,2020-05-23,338.09001867 +819,2020-05-24,0.00000000 +819,2020-05-25,0.00000000 +819,2020-05-26,0.00000000 +819,2020-05-27,876.84310276 +819,2020-05-28,0.00000000 +819,2020-05-29,0.00000000 +819,2020-05-30,0.00000000 +819,2020-05-31,931.14694949 +819,2020-06-01,286.74947625 +819,2020-06-02,0.00000000 +819,2020-06-03,0.00000000 +819,2020-06-04,838.79203525 +819,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_820_anosmia_ms.csv b/google_health/cache/Data_820_anosmia_ms.csv index 2bd4dd10b..549c3821a 100644 --- a/google_health/cache/Data_820_anosmia_ms.csv +++ b/google_health/cache/Data_820_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 820,2020-05-13,0.00000000 820,2020-05-14,469.51203708 820,2020-05-15,0.00000000 +820,2020-05-16,0.00000000 +820,2020-05-17,0.00000000 +820,2020-05-18,959.23329780 +820,2020-05-19,1422.75258660 +820,2020-05-20,0.00000000 +820,2020-05-21,1452.33870317 +820,2020-05-22,0.00000000 +820,2020-05-23,0.00000000 +820,2020-05-24,0.00000000 +820,2020-05-25,1684.42415870 +820,2020-05-26,0.00000000 +820,2020-05-27,0.00000000 +820,2020-05-28,0.00000000 +820,2020-05-29,503.19493017 +820,2020-05-30,0.00000000 +820,2020-05-31,536.65122247 +820,2020-06-01,0.00000000 +820,2020-06-02,493.90353083 +820,2020-06-03,472.85109359 +820,2020-06-04,0.00000000 +820,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_821_anosmia_ms.csv b/google_health/cache/Data_821_anosmia_ms.csv index 93bcf818c..9bcdeb4d3 100644 --- a/google_health/cache/Data_821_anosmia_ms.csv +++ b/google_health/cache/Data_821_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 821,2020-05-13,0.00000000 821,2020-05-14,0.00000000 821,2020-05-15,0.00000000 +821,2020-05-16,0.00000000 +821,2020-05-17,0.00000000 +821,2020-05-18,0.00000000 +821,2020-05-19,0.00000000 +821,2020-05-20,0.00000000 +821,2020-05-21,0.00000000 +821,2020-05-22,0.00000000 +821,2020-05-23,0.00000000 +821,2020-05-24,0.00000000 +821,2020-05-25,0.00000000 +821,2020-05-26,0.00000000 +821,2020-05-27,0.00000000 +821,2020-05-28,0.00000000 +821,2020-05-29,0.00000000 +821,2020-05-30,0.00000000 +821,2020-05-31,0.00000000 +821,2020-06-01,0.00000000 +821,2020-06-02,0.00000000 +821,2020-06-03,0.00000000 +821,2020-06-04,0.00000000 +821,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_825_anosmia_ms.csv b/google_health/cache/Data_825_anosmia_ms.csv index 81971864e..8cf2ad9ea 100644 --- a/google_health/cache/Data_825_anosmia_ms.csv +++ b/google_health/cache/Data_825_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 825,2020-05-13,900.85724956 825,2020-05-14,0.00000000 825,2020-05-15,455.48367502 +825,2020-05-16,2080.14339015 +825,2020-05-17,0.00000000 +825,2020-05-18,1973.72363290 +825,2020-05-19,0.00000000 +825,2020-05-20,0.00000000 +825,2020-05-21,924.55889900 +825,2020-05-22,0.00000000 +825,2020-05-23,0.00000000 +825,2020-05-24,0.00000000 +825,2020-05-25,1043.74133416 +825,2020-05-26,464.66969930 +825,2020-05-27,0.00000000 +825,2020-05-28,0.00000000 +825,2020-05-29,0.00000000 +825,2020-05-30,1015.91239595 +825,2020-05-31,1018.63352466 +825,2020-06-01,0.00000000 +825,2020-06-02,451.77742533 +825,2020-06-03,442.75953303 +825,2020-06-04,894.99494241 +825,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_828_anosmia_ms.csv b/google_health/cache/Data_828_anosmia_ms.csv index 8d025ad51..9c4bb679a 100644 --- a/google_health/cache/Data_828_anosmia_ms.csv +++ b/google_health/cache/Data_828_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 828,2020-05-13,0.00000000 828,2020-05-14,0.00000000 828,2020-05-15,0.00000000 +828,2020-05-16,0.00000000 +828,2020-05-17,0.00000000 +828,2020-05-18,0.00000000 +828,2020-05-19,0.00000000 +828,2020-05-20,0.00000000 +828,2020-05-21,0.00000000 +828,2020-05-22,5477.95124623 +828,2020-05-23,0.00000000 +828,2020-05-24,0.00000000 +828,2020-05-25,0.00000000 +828,2020-05-26,0.00000000 +828,2020-05-27,0.00000000 +828,2020-05-28,0.00000000 +828,2020-05-29,8117.05480466 +828,2020-05-30,0.00000000 +828,2020-05-31,0.00000000 +828,2020-06-01,0.00000000 +828,2020-06-02,0.00000000 +828,2020-06-03,0.00000000 +828,2020-06-04,0.00000000 +828,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_839_anosmia_ms.csv b/google_health/cache/Data_839_anosmia_ms.csv index 9db0bf67c..b8b59e248 100644 --- a/google_health/cache/Data_839_anosmia_ms.csv +++ b/google_health/cache/Data_839_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 839,2020-05-13,0.00000000 839,2020-05-14,0.00000000 839,2020-05-15,0.00000000 +839,2020-05-16,0.00000000 +839,2020-05-17,861.29344856 +839,2020-05-18,1566.14854467 +839,2020-05-19,0.00000000 +839,2020-05-20,0.00000000 +839,2020-05-21,0.00000000 +839,2020-05-22,0.00000000 +839,2020-05-23,0.00000000 +839,2020-05-24,0.00000000 +839,2020-05-25,0.00000000 +839,2020-05-26,0.00000000 +839,2020-05-27,0.00000000 +839,2020-05-28,0.00000000 +839,2020-05-29,0.00000000 +839,2020-05-30,0.00000000 +839,2020-05-31,0.00000000 +839,2020-06-01,2372.02846500 +839,2020-06-02,1569.42178687 +839,2020-06-03,0.00000000 +839,2020-06-04,1491.80724856 +839,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_855_anosmia_ms.csv b/google_health/cache/Data_855_anosmia_ms.csv index 9f0bf4b1c..9d60f904a 100644 --- a/google_health/cache/Data_855_anosmia_ms.csv +++ b/google_health/cache/Data_855_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 855,2020-05-13,0.00000000 855,2020-05-14,0.00000000 855,2020-05-15,0.00000000 +855,2020-05-16,0.00000000 +855,2020-05-17,0.00000000 +855,2020-05-18,0.00000000 +855,2020-05-19,0.00000000 +855,2020-05-20,0.00000000 +855,2020-05-21,0.00000000 +855,2020-05-22,0.00000000 +855,2020-05-23,0.00000000 +855,2020-05-24,0.00000000 +855,2020-05-25,0.00000000 +855,2020-05-26,0.00000000 +855,2020-05-27,0.00000000 +855,2020-05-28,0.00000000 +855,2020-05-29,0.00000000 +855,2020-05-30,0.00000000 +855,2020-05-31,0.00000000 +855,2020-06-01,0.00000000 +855,2020-06-02,0.00000000 +855,2020-06-03,0.00000000 +855,2020-06-04,0.00000000 +855,2020-06-05,2623.98320651 diff --git a/google_health/cache/Data_862_anosmia_ms.csv b/google_health/cache/Data_862_anosmia_ms.csv index fb430493e..0ccdf8497 100644 --- a/google_health/cache/Data_862_anosmia_ms.csv +++ b/google_health/cache/Data_862_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 862,2020-05-13,0.00000000 862,2020-05-14,0.00000000 862,2020-05-15,0.00000000 +862,2020-05-16,464.48754670 +862,2020-05-17,0.00000000 +862,2020-05-18,0.00000000 +862,2020-05-19,0.00000000 +862,2020-05-20,813.72265233 +862,2020-05-21,0.00000000 +862,2020-05-22,0.00000000 +862,2020-05-23,0.00000000 +862,2020-05-24,0.00000000 +862,2020-05-25,0.00000000 +862,2020-05-26,825.11719268 +862,2020-05-27,0.00000000 +862,2020-05-28,821.44214356 +862,2020-05-29,0.00000000 +862,2020-05-30,451.68580016 +862,2020-05-31,0.00000000 +862,2020-06-01,0.00000000 +862,2020-06-02,1222.84977958 +862,2020-06-03,0.00000000 +862,2020-06-04,0.00000000 +862,2020-06-05,410.46153304 diff --git a/google_health/cache/Data_866_anosmia_ms.csv b/google_health/cache/Data_866_anosmia_ms.csv index 4571de45d..0df022fb3 100644 --- a/google_health/cache/Data_866_anosmia_ms.csv +++ b/google_health/cache/Data_866_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 866,2020-05-13,0.00000000 866,2020-05-14,0.00000000 866,2020-05-15,0.00000000 +866,2020-05-16,0.00000000 +866,2020-05-17,0.00000000 +866,2020-05-18,0.00000000 +866,2020-05-19,0.00000000 +866,2020-05-20,0.00000000 +866,2020-05-21,1118.91115102 +866,2020-05-22,0.00000000 +866,2020-05-23,0.00000000 +866,2020-05-24,3909.24168787 +866,2020-05-25,1262.19995174 +866,2020-05-26,0.00000000 +866,2020-05-27,3276.98527590 +866,2020-05-28,1102.50116558 +866,2020-05-29,1131.76239661 +866,2020-05-30,0.00000000 +866,2020-05-31,0.00000000 +866,2020-06-01,0.00000000 +866,2020-06-02,0.00000000 +866,2020-06-03,1075.59231441 +866,2020-06-04,0.00000000 +866,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_868_anosmia_ms.csv b/google_health/cache/Data_868_anosmia_ms.csv index 6bc98398a..caa8ce558 100644 --- a/google_health/cache/Data_868_anosmia_ms.csv +++ b/google_health/cache/Data_868_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 868,2020-05-13,0.00000000 868,2020-05-14,0.00000000 868,2020-05-15,0.00000000 +868,2020-05-16,0.00000000 +868,2020-05-17,0.00000000 +868,2020-05-18,0.00000000 +868,2020-05-19,0.00000000 +868,2020-05-20,4273.50427350 +868,2020-05-21,8543.35753951 +868,2020-05-22,0.00000000 +868,2020-05-23,0.00000000 +868,2020-05-24,0.00000000 +868,2020-05-25,0.00000000 +868,2020-05-26,0.00000000 +868,2020-05-27,0.00000000 +868,2020-05-28,0.00000000 +868,2020-05-29,0.00000000 +868,2020-05-30,0.00000000 +868,2020-05-31,0.00000000 +868,2020-06-01,0.00000000 +868,2020-06-02,0.00000000 +868,2020-06-03,0.00000000 +868,2020-06-04,4351.61009574 +868,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_881_anosmia_ms.csv b/google_health/cache/Data_881_anosmia_ms.csv index bf14cb618..2d8b56aa1 100644 --- a/google_health/cache/Data_881_anosmia_ms.csv +++ b/google_health/cache/Data_881_anosmia_ms.csv @@ -131,3 +131,24 @@ geo_id,timestamp,val 881,2020-05-13,0.00000000 881,2020-05-14,0.00000000 881,2020-05-15,0.00000000 +881,2020-05-16,2110.14982064 +881,2020-05-17,0.00000000 +881,2020-05-18,1715.56013038 +881,2020-05-19,0.00000000 +881,2020-05-20,0.00000000 +881,2020-05-21,1719.09919202 +881,2020-05-22,0.00000000 +881,2020-05-23,0.00000000 +881,2020-05-24,0.00000000 +881,2020-05-25,0.00000000 +881,2020-05-26,1804.72838838 +881,2020-05-27,0.00000000 +881,2020-05-28,0.00000000 +881,2020-05-29,0.00000000 +881,2020-05-30,0.00000000 +881,2020-05-31,0.00000000 +881,2020-06-01,0.00000000 +881,2020-06-02,0.00000000 +881,2020-06-03,0.00000000 +881,2020-06-04,0.00000000 +881,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_AK_anosmia_ms.csv b/google_health/cache/Data_AK_anosmia_ms.csv index a4463b67c..7c6d0a723 100644 --- a/google_health/cache/Data_AK_anosmia_ms.csv +++ b/google_health/cache/Data_AK_anosmia_ms.csv @@ -131,3 +131,24 @@ AK,2020-05-12,0.00000000 AK,2020-05-13,0.00000000 AK,2020-05-14,0.00000000 AK,2020-05-15,0.00000000 +AK,2020-05-16,0.00000000 +AK,2020-05-17,0.00000000 +AK,2020-05-18,0.00000000 +AK,2020-05-19,0.00000000 +AK,2020-05-20,0.00000000 +AK,2020-05-21,0.00000000 +AK,2020-05-22,0.00000000 +AK,2020-05-23,0.00000000 +AK,2020-05-24,0.00000000 +AK,2020-05-25,0.00000000 +AK,2020-05-26,0.00000000 +AK,2020-05-27,0.00000000 +AK,2020-05-28,0.00000000 +AK,2020-05-29,0.00000000 +AK,2020-05-30,8022.46289611 +AK,2020-05-31,0.00000000 +AK,2020-06-01,0.00000000 +AK,2020-06-02,0.00000000 +AK,2020-06-03,0.00000000 +AK,2020-06-04,0.00000000 +AK,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_AL_anosmia_ms.csv b/google_health/cache/Data_AL_anosmia_ms.csv index 8e68fee70..71efb5ba4 100644 --- a/google_health/cache/Data_AL_anosmia_ms.csv +++ b/google_health/cache/Data_AL_anosmia_ms.csv @@ -131,3 +131,24 @@ AL,2020-05-12,876.42383577 AL,2020-05-13,0.00000000 AL,2020-05-14,1276.86369419 AL,2020-05-15,438.00614800 +AL,2020-05-16,1013.18806197 +AL,2020-05-17,978.27787696 +AL,2020-05-18,432.67936270 +AL,2020-05-19,0.00000000 +AL,2020-05-20,885.13427714 +AL,2020-05-21,919.50601243 +AL,2020-05-22,0.00000000 +AL,2020-05-23,1029.43919005 +AL,2020-05-24,0.00000000 +AL,2020-05-25,0.00000000 +AL,2020-05-26,896.90756323 +AL,2020-05-27,0.00000000 +AL,2020-05-28,0.00000000 +AL,2020-05-29,0.00000000 +AL,2020-05-30,0.00000000 +AL,2020-05-31,0.00000000 +AL,2020-06-01,903.46127128 +AL,2020-06-02,458.98787092 +AL,2020-06-03,2137.98417685 +AL,2020-06-04,0.00000000 +AL,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_AR_anosmia_ms.csv b/google_health/cache/Data_AR_anosmia_ms.csv index d65f15a48..99d5c1476 100644 --- a/google_health/cache/Data_AR_anosmia_ms.csv +++ b/google_health/cache/Data_AR_anosmia_ms.csv @@ -131,3 +131,24 @@ AR,2020-05-12,0.00000000 AR,2020-05-13,765.56860053 AR,2020-05-14,0.00000000 AR,2020-05-15,0.00000000 +AR,2020-05-16,0.00000000 +AR,2020-05-17,0.00000000 +AR,2020-05-18,1551.49810238 +AR,2020-05-19,0.00000000 +AR,2020-05-20,0.00000000 +AR,2020-05-21,816.59549633 +AR,2020-05-22,0.00000000 +AR,2020-05-23,0.00000000 +AR,2020-05-24,0.00000000 +AR,2020-05-25,0.00000000 +AR,2020-05-26,0.00000000 +AR,2020-05-27,1537.58102553 +AR,2020-05-28,0.00000000 +AR,2020-05-29,0.00000000 +AR,2020-05-30,0.00000000 +AR,2020-05-31,1886.05573469 +AR,2020-06-01,0.00000000 +AR,2020-06-02,0.00000000 +AR,2020-06-03,1549.81375461 +AR,2020-06-04,0.00000000 +AR,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_AZ_anosmia_ms.csv b/google_health/cache/Data_AZ_anosmia_ms.csv index d9acf1b49..fb721b895 100644 --- a/google_health/cache/Data_AZ_anosmia_ms.csv +++ b/google_health/cache/Data_AZ_anosmia_ms.csv @@ -131,3 +131,24 @@ AZ,2020-05-12,1020.90333528 AZ,2020-05-13,900.95312827 AZ,2020-05-14,0.00000000 AZ,2020-05-15,0.00000000 +AZ,2020-05-16,865.50245271 +AZ,2020-05-17,0.00000000 +AZ,2020-05-18,262.49066913 +AZ,2020-05-19,261.49264492 +AZ,2020-05-20,527.98264033 +AZ,2020-05-21,538.38803969 +AZ,2020-05-22,0.00000000 +AZ,2020-05-23,305.53188680 +AZ,2020-05-24,1221.12419311 +AZ,2020-05-25,1130.34489640 +AZ,2020-05-26,808.62128272 +AZ,2020-05-27,666.35518109 +AZ,2020-05-28,532.66825890 +AZ,2020-05-29,271.88139765 +AZ,2020-05-30,290.25756384 +AZ,2020-05-31,995.72785045 +AZ,2020-06-01,520.43380528 +AZ,2020-06-02,798.54546591 +AZ,2020-06-03,1011.79764745 +AZ,2020-06-04,0.00000000 +AZ,2020-06-05,1282.27238079 diff --git a/google_health/cache/Data_CA_anosmia_ms.csv b/google_health/cache/Data_CA_anosmia_ms.csv index 67413b339..4ddb4faa0 100644 --- a/google_health/cache/Data_CA_anosmia_ms.csv +++ b/google_health/cache/Data_CA_anosmia_ms.csv @@ -131,3 +131,24 @@ CA,2020-05-12,378.89348306 CA,2020-05-13,280.14778306 CA,2020-05-14,174.07283708 CA,2020-05-15,122.70416653 +CA,2020-05-16,420.96482205 +CA,2020-05-17,166.92269153 +CA,2020-05-18,340.01822779 +CA,2020-05-19,233.22189338 +CA,2020-05-20,122.14929250 +CA,2020-05-21,363.87754657 +CA,2020-05-22,168.50662074 +CA,2020-05-23,316.77177387 +CA,2020-05-24,198.72277016 +CA,2020-05-25,141.78254407 +CA,2020-05-26,54.86623149 +CA,2020-05-27,218.41617226 +CA,2020-05-28,135.04476829 +CA,2020-05-29,277.64646113 +CA,2020-05-30,178.96177325 +CA,2020-05-31,188.94781921 +CA,2020-06-01,200.30004730 +CA,2020-06-02,148.73046964 +CA,2020-06-03,210.42131294 +CA,2020-06-04,182.07036415 +CA,2020-06-05,203.12006575 diff --git a/google_health/cache/Data_CO_anosmia_ms.csv b/google_health/cache/Data_CO_anosmia_ms.csv index 7dbccc75e..42651e0b3 100644 --- a/google_health/cache/Data_CO_anosmia_ms.csv +++ b/google_health/cache/Data_CO_anosmia_ms.csv @@ -131,3 +131,24 @@ CO,2020-05-12,2409.46894962 CO,2020-05-13,570.66420153 CO,2020-05-14,846.55398950 CO,2020-05-15,0.00000000 +CO,2020-05-16,338.49397663 +CO,2020-05-17,0.00000000 +CO,2020-05-18,1043.79052321 +CO,2020-05-19,584.03682040 +CO,2020-05-20,873.04381089 +CO,2020-05-21,610.06977112 +CO,2020-05-22,948.65711908 +CO,2020-05-23,357.56408901 +CO,2020-05-24,685.28661243 +CO,2020-05-25,1030.33529164 +CO,2020-05-26,616.10880936 +CO,2020-05-27,0.00000000 +CO,2020-05-28,0.00000000 +CO,2020-05-29,0.00000000 +CO,2020-05-30,670.16503495 +CO,2020-05-31,667.93024042 +CO,2020-06-01,0.00000000 +CO,2020-06-02,588.51573087 +CO,2020-06-03,574.43695201 +CO,2020-06-04,864.06244495 +CO,2020-06-05,597.63929915 diff --git a/google_health/cache/Data_CT_anosmia_ms.csv b/google_health/cache/Data_CT_anosmia_ms.csv index 53e73441c..ae008f97c 100644 --- a/google_health/cache/Data_CT_anosmia_ms.csv +++ b/google_health/cache/Data_CT_anosmia_ms.csv @@ -131,3 +131,24 @@ CT,2020-05-12,0.00000000 CT,2020-05-13,0.00000000 CT,2020-05-14,0.00000000 CT,2020-05-15,851.25299313 +CT,2020-05-16,1570.22628029 +CT,2020-05-17,0.00000000 +CT,2020-05-18,1251.76246651 +CT,2020-05-19,0.00000000 +CT,2020-05-20,0.00000000 +CT,2020-05-21,1308.36323662 +CT,2020-05-22,917.18032690 +CT,2020-05-23,0.00000000 +CT,2020-05-24,0.00000000 +CT,2020-05-25,0.00000000 +CT,2020-05-26,427.76366387 +CT,2020-05-27,1292.45949326 +CT,2020-05-28,415.79196959 +CT,2020-05-29,0.00000000 +CT,2020-05-30,1028.75872775 +CT,2020-05-31,524.26670232 +CT,2020-06-01,860.39757772 +CT,2020-06-02,1718.87038560 +CT,2020-06-03,0.00000000 +CT,2020-06-04,839.59100378 +CT,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_DC_anosmia_ms.csv b/google_health/cache/Data_DC_anosmia_ms.csv index 9a3eb4dba..2894b3c9f 100644 --- a/google_health/cache/Data_DC_anosmia_ms.csv +++ b/google_health/cache/Data_DC_anosmia_ms.csv @@ -131,3 +131,24 @@ DC,2020-05-12,1853.22461082 DC,2020-05-13,0.00000000 DC,2020-05-14,1822.82172803 DC,2020-05-15,0.00000000 +DC,2020-05-16,5007.51126690 +DC,2020-05-17,0.00000000 +DC,2020-05-18,1839.84257524 +DC,2020-05-19,0.00000000 +DC,2020-05-20,5713.19748619 +DC,2020-05-21,0.00000000 +DC,2020-05-22,0.00000000 +DC,2020-05-23,0.00000000 +DC,2020-05-24,0.00000000 +DC,2020-05-25,0.00000000 +DC,2020-05-26,0.00000000 +DC,2020-05-27,0.00000000 +DC,2020-05-28,0.00000000 +DC,2020-05-29,0.00000000 +DC,2020-05-30,0.00000000 +DC,2020-05-31,0.00000000 +DC,2020-06-01,0.00000000 +DC,2020-06-02,0.00000000 +DC,2020-06-03,0.00000000 +DC,2020-06-04,3648.96916621 +DC,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_DE_anosmia_ms.csv b/google_health/cache/Data_DE_anosmia_ms.csv index fbe8947fb..5db03cbb9 100644 --- a/google_health/cache/Data_DE_anosmia_ms.csv +++ b/google_health/cache/Data_DE_anosmia_ms.csv @@ -131,3 +131,24 @@ DE,2020-05-12,1856.91707459 DE,2020-05-13,0.00000000 DE,2020-05-14,0.00000000 DE,2020-05-15,0.00000000 +DE,2020-05-16,0.00000000 +DE,2020-05-17,4247.18623912 +DE,2020-05-18,1858.39063371 +DE,2020-05-19,1826.15047480 +DE,2020-05-20,0.00000000 +DE,2020-05-21,0.00000000 +DE,2020-05-22,0.00000000 +DE,2020-05-23,0.00000000 +DE,2020-05-24,0.00000000 +DE,2020-05-25,4276.24545649 +DE,2020-05-26,5737.23465290 +DE,2020-05-27,0.00000000 +DE,2020-05-28,0.00000000 +DE,2020-05-29,0.00000000 +DE,2020-05-30,0.00000000 +DE,2020-05-31,0.00000000 +DE,2020-06-01,0.00000000 +DE,2020-06-02,0.00000000 +DE,2020-06-03,0.00000000 +DE,2020-06-04,0.00000000 +DE,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_FL_anosmia_ms.csv b/google_health/cache/Data_FL_anosmia_ms.csv index 3f3885d9b..573e75466 100644 --- a/google_health/cache/Data_FL_anosmia_ms.csv +++ b/google_health/cache/Data_FL_anosmia_ms.csv @@ -131,3 +131,24 @@ FL,2020-05-12,357.69513962 FL,2020-05-13,557.23515211 FL,2020-05-14,232.01842940 FL,2020-05-15,262.34683734 +FL,2020-05-16,503.75872463 +FL,2020-05-17,369.23165776 +FL,2020-05-18,414.71192795 +FL,2020-05-19,238.00014212 +FL,2020-05-20,156.87329297 +FL,2020-05-21,160.05275170 +FL,2020-05-22,82.01216259 +FL,2020-05-23,278.54797905 +FL,2020-05-24,412.82602674 +FL,2020-05-25,87.16175429 +FL,2020-05-26,510.35416523 +FL,2020-05-27,238.16209012 +FL,2020-05-28,243.33149297 +FL,2020-05-29,292.58848684 +FL,2020-05-30,395.52789937 +FL,2020-05-31,279.26882576 +FL,2020-06-01,81.60463431 +FL,2020-06-02,247.18375158 +FL,2020-06-03,390.34426504 +FL,2020-06-04,309.88366633 +FL,2020-06-05,320.95568511 diff --git a/google_health/cache/Data_GA_anosmia_ms.csv b/google_health/cache/Data_GA_anosmia_ms.csv index f26d17c57..9ff5a1432 100644 --- a/google_health/cache/Data_GA_anosmia_ms.csv +++ b/google_health/cache/Data_GA_anosmia_ms.csv @@ -131,3 +131,24 @@ GA,2020-05-12,464.44380543 GA,2020-05-13,0.00000000 GA,2020-05-14,0.00000000 GA,2020-05-15,458.87470271 +GA,2020-05-16,522.25685490 +GA,2020-05-17,264.83480490 +GA,2020-05-18,683.54156534 +GA,2020-05-19,304.82213711 +GA,2020-05-20,912.59908229 +GA,2020-05-21,159.96790993 +GA,2020-05-22,159.10083826 +GA,2020-05-23,0.00000000 +GA,2020-05-24,0.00000000 +GA,2020-05-25,175.25209404 +GA,2020-05-26,1106.09276975 +GA,2020-05-27,383.37783934 +GA,2020-05-28,312.96207172 +GA,2020-05-29,473.20066427 +GA,2020-05-30,173.55798544 +GA,2020-05-31,0.00000000 +GA,2020-06-01,0.00000000 +GA,2020-06-02,475.62734202 +GA,2020-06-03,601.99314052 +GA,2020-06-04,0.00000000 +GA,2020-06-05,150.05281059 diff --git a/google_health/cache/Data_HI_anosmia_ms.csv b/google_health/cache/Data_HI_anosmia_ms.csv index 0ce363d6b..3dcd374f9 100644 --- a/google_health/cache/Data_HI_anosmia_ms.csv +++ b/google_health/cache/Data_HI_anosmia_ms.csv @@ -131,3 +131,24 @@ HI,2020-05-12,0.00000000 HI,2020-05-13,0.00000000 HI,2020-05-14,0.00000000 HI,2020-05-15,0.00000000 +HI,2020-05-16,0.00000000 +HI,2020-05-17,0.00000000 +HI,2020-05-18,1499.25037481 +HI,2020-05-19,0.00000000 +HI,2020-05-20,0.00000000 +HI,2020-05-21,0.00000000 +HI,2020-05-22,0.00000000 +HI,2020-05-23,1645.00740253 +HI,2020-05-24,0.00000000 +HI,2020-05-25,0.00000000 +HI,2020-05-26,1617.86118751 +HI,2020-05-27,0.00000000 +HI,2020-05-28,0.00000000 +HI,2020-05-29,0.00000000 +HI,2020-05-30,0.00000000 +HI,2020-05-31,0.00000000 +HI,2020-06-01,0.00000000 +HI,2020-06-02,0.00000000 +HI,2020-06-03,0.00000000 +HI,2020-06-04,4515.19900663 +HI,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_IA_anosmia_ms.csv b/google_health/cache/Data_IA_anosmia_ms.csv index 8a740c2cd..56a88b1c5 100644 --- a/google_health/cache/Data_IA_anosmia_ms.csv +++ b/google_health/cache/Data_IA_anosmia_ms.csv @@ -131,3 +131,24 @@ IA,2020-05-12,0.00000000 IA,2020-05-13,0.00000000 IA,2020-05-14,3158.74678832 IA,2020-05-15,666.42316149 +IA,2020-05-16,745.98363391 +IA,2020-05-17,2099.62012601 +IA,2020-05-18,2521.25790832 +IA,2020-05-19,654.69423366 +IA,2020-05-20,656.94345996 +IA,2020-05-21,2038.85481564 +IA,2020-05-22,695.48469518 +IA,2020-05-23,0.00000000 +IA,2020-05-24,1528.64839259 +IA,2020-05-25,744.28929120 +IA,2020-05-26,0.00000000 +IA,2020-05-27,0.00000000 +IA,2020-05-28,0.00000000 +IA,2020-05-29,0.00000000 +IA,2020-05-30,0.00000000 +IA,2020-05-31,1561.43706175 +IA,2020-06-01,1991.40595842 +IA,2020-06-02,0.00000000 +IA,2020-06-03,647.09600970 +IA,2020-06-04,1960.72175843 +IA,2020-06-05,1988.78185765 diff --git a/google_health/cache/Data_ID_anosmia_ms.csv b/google_health/cache/Data_ID_anosmia_ms.csv index 31583471e..c10781e08 100644 --- a/google_health/cache/Data_ID_anosmia_ms.csv +++ b/google_health/cache/Data_ID_anosmia_ms.csv @@ -131,3 +131,24 @@ ID,2020-05-12,0.00000000 ID,2020-05-13,1144.00275344 ID,2020-05-14,0.00000000 ID,2020-05-15,2349.04238049 +ID,2020-05-16,0.00000000 +ID,2020-05-17,0.00000000 +ID,2020-05-18,1717.50363623 +ID,2020-05-19,0.00000000 +ID,2020-05-20,0.00000000 +ID,2020-05-21,0.00000000 +ID,2020-05-22,0.00000000 +ID,2020-05-23,0.00000000 +ID,2020-05-24,2967.77252905 +ID,2020-05-25,0.00000000 +ID,2020-05-26,2453.08983606 +ID,2020-05-27,0.00000000 +ID,2020-05-28,0.00000000 +ID,2020-05-29,0.00000000 +ID,2020-05-30,0.00000000 +ID,2020-05-31,1391.44973326 +ID,2020-06-01,0.00000000 +ID,2020-06-02,0.00000000 +ID,2020-06-03,0.00000000 +ID,2020-06-04,0.00000000 +ID,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_IL_anosmia_ms.csv b/google_health/cache/Data_IL_anosmia_ms.csv index b1edf32a6..031e5bdeb 100644 --- a/google_health/cache/Data_IL_anosmia_ms.csv +++ b/google_health/cache/Data_IL_anosmia_ms.csv @@ -131,3 +131,24 @@ IL,2020-05-12,1889.24769913 IL,2020-05-13,566.37632347 IL,2020-05-14,484.97072470 IL,2020-05-15,654.05069029 +IL,2020-05-16,594.87453382 +IL,2020-05-17,425.74009803 +IL,2020-05-18,586.59828560 +IL,2020-05-19,457.15936273 +IL,2020-05-20,599.38487655 +IL,2020-05-21,396.28912442 +IL,2020-05-22,679.61067513 +IL,2020-05-23,839.22962247 +IL,2020-05-24,478.35406171 +IL,2020-05-25,309.42710579 +IL,2020-05-26,682.75817097 +IL,2020-05-27,262.35532480 +IL,2020-05-28,775.07811854 +IL,2020-05-29,406.49247287 +IL,2020-05-30,772.44897640 +IL,2020-05-31,306.59726208 +IL,2020-06-01,528.48957888 +IL,2020-06-02,403.92121661 +IL,2020-06-03,530.79668164 +IL,2020-06-04,420.08526987 +IL,2020-06-05,389.59670748 diff --git a/google_health/cache/Data_IN_anosmia_ms.csv b/google_health/cache/Data_IN_anosmia_ms.csv index dc49c15c8..716028b7b 100644 --- a/google_health/cache/Data_IN_anosmia_ms.csv +++ b/google_health/cache/Data_IN_anosmia_ms.csv @@ -131,3 +131,24 @@ IN,2020-05-12,0.00000000 IN,2020-05-13,0.00000000 IN,2020-05-14,874.33660162 IN,2020-05-15,0.00000000 +IN,2020-05-16,702.64802037 +IN,2020-05-17,0.00000000 +IN,2020-05-18,0.00000000 +IN,2020-05-19,0.00000000 +IN,2020-05-20,304.49505872 +IN,2020-05-21,0.00000000 +IN,2020-05-22,328.89803199 +IN,2020-05-23,1661.32626206 +IN,2020-05-24,1109.52512173 +IN,2020-05-25,0.00000000 +IN,2020-05-26,646.83506955 +IN,2020-05-27,320.82791713 +IN,2020-05-28,0.00000000 +IN,2020-05-29,0.00000000 +IN,2020-05-30,0.00000000 +IN,2020-05-31,0.00000000 +IN,2020-06-01,646.62773482 +IN,2020-06-02,327.00225563 +IN,2020-06-03,623.06515491 +IN,2020-06-04,0.00000000 +IN,2020-06-05,631.36839251 diff --git a/google_health/cache/Data_KS_anosmia_ms.csv b/google_health/cache/Data_KS_anosmia_ms.csv index b4305da9f..2c8ae6caa 100644 --- a/google_health/cache/Data_KS_anosmia_ms.csv +++ b/google_health/cache/Data_KS_anosmia_ms.csv @@ -131,3 +131,24 @@ KS,2020-05-12,700.07537282 KS,2020-05-13,0.00000000 KS,2020-05-14,1420.74226850 KS,2020-05-15,2126.92294553 +KS,2020-05-16,829.32190263 +KS,2020-05-17,0.00000000 +KS,2020-05-18,1454.84977652 +KS,2020-05-19,753.10552760 +KS,2020-05-20,0.00000000 +KS,2020-05-21,0.00000000 +KS,2020-05-22,0.00000000 +KS,2020-05-23,898.38528180 +KS,2020-05-24,0.00000000 +KS,2020-05-25,0.00000000 +KS,2020-05-26,0.00000000 +KS,2020-05-27,0.00000000 +KS,2020-05-28,0.00000000 +KS,2020-05-29,0.00000000 +KS,2020-05-30,912.92655343 +KS,2020-05-31,1871.81720078 +KS,2020-06-01,0.00000000 +KS,2020-06-02,0.00000000 +KS,2020-06-03,749.03057319 +KS,2020-06-04,0.00000000 +KS,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_KY_anosmia_ms.csv b/google_health/cache/Data_KY_anosmia_ms.csv index c87bee6d3..4b9d09433 100644 --- a/google_health/cache/Data_KY_anosmia_ms.csv +++ b/google_health/cache/Data_KY_anosmia_ms.csv @@ -131,3 +131,24 @@ KY,2020-05-12,1901.39885363 KY,2020-05-13,0.00000000 KY,2020-05-14,0.00000000 KY,2020-05-15,0.00000000 +KY,2020-05-16,0.00000000 +KY,2020-05-17,0.00000000 +KY,2020-05-18,1392.56521102 +KY,2020-05-19,1399.29519871 +KY,2020-05-20,0.00000000 +KY,2020-05-21,0.00000000 +KY,2020-05-22,0.00000000 +KY,2020-05-23,555.06943965 +KY,2020-05-24,0.00000000 +KY,2020-05-25,0.00000000 +KY,2020-05-26,0.00000000 +KY,2020-05-27,0.00000000 +KY,2020-05-28,492.12785752 +KY,2020-05-29,994.93107998 +KY,2020-05-30,0.00000000 +KY,2020-05-31,572.57796562 +KY,2020-06-01,0.00000000 +KY,2020-06-02,0.00000000 +KY,2020-06-03,0.00000000 +KY,2020-06-04,474.96351529 +KY,2020-06-05,479.50503583 diff --git a/google_health/cache/Data_LA_anosmia_ms.csv b/google_health/cache/Data_LA_anosmia_ms.csv index 9f8410204..2a657e264 100644 --- a/google_health/cache/Data_LA_anosmia_ms.csv +++ b/google_health/cache/Data_LA_anosmia_ms.csv @@ -131,3 +131,24 @@ LA,2020-05-12,474.36253658 LA,2020-05-13,0.00000000 LA,2020-05-14,912.04205254 LA,2020-05-15,0.00000000 +LA,2020-05-16,0.00000000 +LA,2020-05-17,2174.97765693 +LA,2020-05-18,474.86296613 +LA,2020-05-19,0.00000000 +LA,2020-05-20,0.00000000 +LA,2020-05-21,0.00000000 +LA,2020-05-22,0.00000000 +LA,2020-05-23,0.00000000 +LA,2020-05-24,0.00000000 +LA,2020-05-25,0.00000000 +LA,2020-05-26,489.34603544 +LA,2020-05-27,0.00000000 +LA,2020-05-28,0.00000000 +LA,2020-05-29,0.00000000 +LA,2020-05-30,573.35306437 +LA,2020-05-31,0.00000000 +LA,2020-06-01,498.32136234 +LA,2020-06-02,987.30893123 +LA,2020-06-03,0.00000000 +LA,2020-06-04,0.00000000 +LA,2020-06-05,980.38925044 diff --git a/google_health/cache/Data_MA_anosmia_ms.csv b/google_health/cache/Data_MA_anosmia_ms.csv index 9a9df0411..55ccd8672 100644 --- a/google_health/cache/Data_MA_anosmia_ms.csv +++ b/google_health/cache/Data_MA_anosmia_ms.csv @@ -131,3 +131,24 @@ MA,2020-05-12,869.44290662 MA,2020-05-13,658.41154875 MA,2020-05-14,1053.68017651 MA,2020-05-15,662.87627708 +MA,2020-05-16,792.34019322 +MA,2020-05-17,1310.19313822 +MA,2020-05-18,212.52328228 +MA,2020-05-19,654.20587767 +MA,2020-05-20,675.54771069 +MA,2020-05-21,618.95167031 +MA,2020-05-22,724.20893008 +MA,2020-05-23,263.79180707 +MA,2020-05-24,555.55686112 +MA,2020-05-25,772.64054229 +MA,2020-05-26,447.52863165 +MA,2020-05-27,1343.23896131 +MA,2020-05-28,441.77940380 +MA,2020-05-29,0.00000000 +MA,2020-05-30,0.00000000 +MA,2020-05-31,0.00000000 +MA,2020-06-01,662.10436546 +MA,2020-06-02,0.00000000 +MA,2020-06-03,0.00000000 +MA,2020-06-04,436.29748980 +MA,2020-06-05,435.59656003 diff --git a/google_health/cache/Data_MD_anosmia_ms.csv b/google_health/cache/Data_MD_anosmia_ms.csv index ba78589de..fc89745f3 100644 --- a/google_health/cache/Data_MD_anosmia_ms.csv +++ b/google_health/cache/Data_MD_anosmia_ms.csv @@ -131,3 +131,24 @@ MD,2020-05-12,882.88935722 MD,2020-05-13,0.00000000 MD,2020-05-14,880.16595125 MD,2020-05-15,779.77858024 +MD,2020-05-16,603.01735090 +MD,2020-05-17,593.73115166 +MD,2020-05-18,758.98894173 +MD,2020-05-19,927.83057772 +MD,2020-05-20,0.00000000 +MD,2020-05-21,1318.71417379 +MD,2020-05-22,514.36740325 +MD,2020-05-23,0.00000000 +MD,2020-05-24,1851.33206613 +MD,2020-05-25,0.00000000 +MD,2020-05-26,263.69991310 +MD,2020-05-27,769.06926158 +MD,2020-05-28,252.84350194 +MD,2020-05-29,1832.00351313 +MD,2020-05-30,909.02339975 +MD,2020-05-31,1071.87394161 +MD,2020-06-01,525.39317198 +MD,2020-06-02,778.23881278 +MD,2020-06-03,490.48730150 +MD,2020-06-04,0.00000000 +MD,2020-06-05,247.07299838 diff --git a/google_health/cache/Data_ME_anosmia_ms.csv b/google_health/cache/Data_ME_anosmia_ms.csv index 9aab3e948..4a2ae7805 100644 --- a/google_health/cache/Data_ME_anosmia_ms.csv +++ b/google_health/cache/Data_ME_anosmia_ms.csv @@ -131,3 +131,24 @@ ME,2020-05-12,1397.36462898 ME,2020-05-13,0.00000000 ME,2020-05-14,0.00000000 ME,2020-05-15,0.00000000 +ME,2020-05-16,0.00000000 +ME,2020-05-17,3404.25531915 +ME,2020-05-18,1449.01869820 +ME,2020-05-19,0.00000000 +ME,2020-05-20,0.00000000 +ME,2020-05-21,0.00000000 +ME,2020-05-22,0.00000000 +ME,2020-05-23,0.00000000 +ME,2020-05-24,0.00000000 +ME,2020-05-25,0.00000000 +ME,2020-05-26,0.00000000 +ME,2020-05-27,0.00000000 +ME,2020-05-28,0.00000000 +ME,2020-05-29,0.00000000 +ME,2020-05-30,0.00000000 +ME,2020-05-31,0.00000000 +ME,2020-06-01,0.00000000 +ME,2020-06-02,0.00000000 +ME,2020-06-03,0.00000000 +ME,2020-06-04,0.00000000 +ME,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_MI_anosmia_ms.csv b/google_health/cache/Data_MI_anosmia_ms.csv index eda978f5c..7ce5f25a1 100644 --- a/google_health/cache/Data_MI_anosmia_ms.csv +++ b/google_health/cache/Data_MI_anosmia_ms.csv @@ -131,3 +131,24 @@ MI,2020-05-12,553.27912288 MI,2020-05-13,374.69654967 MI,2020-05-14,0.00000000 MI,2020-05-15,184.95410567 +MI,2020-05-16,220.75516201 +MI,2020-05-17,602.43900639 +MI,2020-05-18,264.33936343 +MI,2020-05-19,181.19530049 +MI,2020-05-20,563.71042901 +MI,2020-05-21,198.18141097 +MI,2020-05-22,0.00000000 +MI,2020-05-23,682.84536899 +MI,2020-05-24,583.36110195 +MI,2020-05-25,670.49595189 +MI,2020-05-26,374.17594129 +MI,2020-05-27,548.57465500 +MI,2020-05-28,0.00000000 +MI,2020-05-29,185.68469955 +MI,2020-05-30,216.25189877 +MI,2020-05-31,443.90958837 +MI,2020-06-01,371.10877499 +MI,2020-06-02,0.00000000 +MI,2020-06-03,355.78386100 +MI,2020-06-04,360.84145951 +MI,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_MN_anosmia_ms.csv b/google_health/cache/Data_MN_anosmia_ms.csv index e95e8dca4..066686a72 100644 --- a/google_health/cache/Data_MN_anosmia_ms.csv +++ b/google_health/cache/Data_MN_anosmia_ms.csv @@ -131,3 +131,24 @@ MN,2020-05-12,0.00000000 MN,2020-05-13,0.00000000 MN,2020-05-14,598.94295289 MN,2020-05-15,0.00000000 +MN,2020-05-16,0.00000000 +MN,2020-05-17,674.64741246 +MN,2020-05-18,1382.33281571 +MN,2020-05-19,616.78068784 +MN,2020-05-20,312.85134213 +MN,2020-05-21,318.18482840 +MN,2020-05-22,960.51966025 +MN,2020-05-23,0.00000000 +MN,2020-05-24,1143.04711222 +MN,2020-05-25,0.00000000 +MN,2020-05-26,304.47763056 +MN,2020-05-27,921.67892184 +MN,2020-05-28,0.00000000 +MN,2020-05-29,940.66681887 +MN,2020-05-30,748.92835427 +MN,2020-05-31,0.00000000 +MN,2020-06-01,630.27285381 +MN,2020-06-02,311.21151434 +MN,2020-06-03,615.12922470 +MN,2020-06-04,1234.31463125 +MN,2020-06-05,643.86380765 diff --git a/google_health/cache/Data_MO_anosmia_ms.csv b/google_health/cache/Data_MO_anosmia_ms.csv index 0a0d1b057..df01f74ae 100644 --- a/google_health/cache/Data_MO_anosmia_ms.csv +++ b/google_health/cache/Data_MO_anosmia_ms.csv @@ -131,3 +131,24 @@ MO,2020-05-12,601.86195760 MO,2020-05-13,0.00000000 MO,2020-05-14,0.00000000 MO,2020-05-15,0.00000000 +MO,2020-05-16,0.00000000 +MO,2020-05-17,0.00000000 +MO,2020-05-18,312.50786088 +MO,2020-05-19,633.46118299 +MO,2020-05-20,0.00000000 +MO,2020-05-21,0.00000000 +MO,2020-05-22,0.00000000 +MO,2020-05-23,379.08102525 +MO,2020-05-24,0.00000000 +MO,2020-05-25,1072.48432727 +MO,2020-05-26,956.30343297 +MO,2020-05-27,314.78886725 +MO,2020-05-28,0.00000000 +MO,2020-05-29,1670.60272268 +MO,2020-05-30,2297.23198960 +MO,2020-05-31,379.67743865 +MO,2020-06-01,0.00000000 +MO,2020-06-02,328.79983749 +MO,2020-06-03,0.00000000 +MO,2020-06-04,0.00000000 +MO,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_MS_anosmia_ms.csv b/google_health/cache/Data_MS_anosmia_ms.csv index 2d382858b..cc6e7e86a 100644 --- a/google_health/cache/Data_MS_anosmia_ms.csv +++ b/google_health/cache/Data_MS_anosmia_ms.csv @@ -131,3 +131,24 @@ MS,2020-05-12,3520.54903691 MS,2020-05-13,1744.76594124 MS,2020-05-14,0.00000000 MS,2020-05-15,0.00000000 +MS,2020-05-16,0.00000000 +MS,2020-05-17,0.00000000 +MS,2020-05-18,0.00000000 +MS,2020-05-19,0.00000000 +MS,2020-05-20,2683.79741068 +MS,2020-05-21,926.32583264 +MS,2020-05-22,1851.11902011 +MS,2020-05-23,3037.26362493 +MS,2020-05-24,0.00000000 +MS,2020-05-25,0.00000000 +MS,2020-05-26,0.00000000 +MS,2020-05-27,0.00000000 +MS,2020-05-28,0.00000000 +MS,2020-05-29,940.93303905 +MS,2020-05-30,0.00000000 +MS,2020-05-31,0.00000000 +MS,2020-06-01,899.01810223 +MS,2020-06-02,1831.19610606 +MS,2020-06-03,851.42836821 +MS,2020-06-04,0.00000000 +MS,2020-06-05,873.82203293 diff --git a/google_health/cache/Data_MT_anosmia_ms.csv b/google_health/cache/Data_MT_anosmia_ms.csv index a007ae9f8..67af46ba2 100644 --- a/google_health/cache/Data_MT_anosmia_ms.csv +++ b/google_health/cache/Data_MT_anosmia_ms.csv @@ -131,3 +131,24 @@ MT,2020-05-12,0.00000000 MT,2020-05-13,0.00000000 MT,2020-05-14,0.00000000 MT,2020-05-15,0.00000000 +MT,2020-05-16,0.00000000 +MT,2020-05-17,0.00000000 +MT,2020-05-18,4137.36036409 +MT,2020-05-19,0.00000000 +MT,2020-05-20,0.00000000 +MT,2020-05-21,0.00000000 +MT,2020-05-22,0.00000000 +MT,2020-05-23,0.00000000 +MT,2020-05-24,0.00000000 +MT,2020-05-25,0.00000000 +MT,2020-05-26,0.00000000 +MT,2020-05-27,0.00000000 +MT,2020-05-28,0.00000000 +MT,2020-05-29,0.00000000 +MT,2020-05-30,0.00000000 +MT,2020-05-31,0.00000000 +MT,2020-06-01,0.00000000 +MT,2020-06-02,0.00000000 +MT,2020-06-03,0.00000000 +MT,2020-06-04,0.00000000 +MT,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_NC_anosmia_ms.csv b/google_health/cache/Data_NC_anosmia_ms.csv index 38bc9b5a5..eb27a8b15 100644 --- a/google_health/cache/Data_NC_anosmia_ms.csv +++ b/google_health/cache/Data_NC_anosmia_ms.csv @@ -131,3 +131,24 @@ NC,2020-05-12,1633.38686848 NC,2020-05-13,164.92551673 NC,2020-05-14,0.00000000 NC,2020-05-15,172.35041439 +NC,2020-05-16,983.56388675 +NC,2020-05-17,677.91728011 +NC,2020-05-18,643.82739882 +NC,2020-05-19,159.04235930 +NC,2020-05-20,315.74072106 +NC,2020-05-21,161.24216772 +NC,2020-05-22,337.24443816 +NC,2020-05-23,579.00014342 +NC,2020-05-24,389.73001219 +NC,2020-05-25,369.79418564 +NC,2020-05-26,579.72815576 +NC,2020-05-27,476.92854130 +NC,2020-05-28,492.19234906 +NC,2020-05-29,496.96112695 +NC,2020-05-30,187.09343808 +NC,2020-05-31,0.00000000 +NC,2020-06-01,340.47673245 +NC,2020-06-02,344.36682131 +NC,2020-06-03,162.17198750 +NC,2020-06-04,482.99776610 +NC,2020-06-05,162.84084196 diff --git a/google_health/cache/Data_ND_anosmia_ms.csv b/google_health/cache/Data_ND_anosmia_ms.csv index 4140ca4c5..555ee1cb0 100644 --- a/google_health/cache/Data_ND_anosmia_ms.csv +++ b/google_health/cache/Data_ND_anosmia_ms.csv @@ -131,3 +131,24 @@ ND,2020-05-12,0.00000000 ND,2020-05-13,0.00000000 ND,2020-05-14,0.00000000 ND,2020-05-15,0.00000000 +ND,2020-05-16,0.00000000 +ND,2020-05-17,3658.98280278 +ND,2020-05-18,0.00000000 +ND,2020-05-19,0.00000000 +ND,2020-05-20,0.00000000 +ND,2020-05-21,0.00000000 +ND,2020-05-22,0.00000000 +ND,2020-05-23,0.00000000 +ND,2020-05-24,0.00000000 +ND,2020-05-25,0.00000000 +ND,2020-05-26,0.00000000 +ND,2020-05-27,0.00000000 +ND,2020-05-28,0.00000000 +ND,2020-05-29,0.00000000 +ND,2020-05-30,0.00000000 +ND,2020-05-31,0.00000000 +ND,2020-06-01,0.00000000 +ND,2020-06-02,0.00000000 +ND,2020-06-03,0.00000000 +ND,2020-06-04,0.00000000 +ND,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_NE_anosmia_ms.csv b/google_health/cache/Data_NE_anosmia_ms.csv index 7f8856ee8..5a9b7cc37 100644 --- a/google_health/cache/Data_NE_anosmia_ms.csv +++ b/google_health/cache/Data_NE_anosmia_ms.csv @@ -131,3 +131,24 @@ NE,2020-05-12,0.00000000 NE,2020-05-13,0.00000000 NE,2020-05-14,0.00000000 NE,2020-05-15,0.00000000 +NE,2020-05-16,0.00000000 +NE,2020-05-17,1073.54397754 +NE,2020-05-18,952.50975454 +NE,2020-05-19,0.00000000 +NE,2020-05-20,0.00000000 +NE,2020-05-21,1003.60096610 +NE,2020-05-22,0.00000000 +NE,2020-05-23,0.00000000 +NE,2020-05-24,0.00000000 +NE,2020-05-25,0.00000000 +NE,2020-05-26,0.00000000 +NE,2020-05-27,0.00000000 +NE,2020-05-28,0.00000000 +NE,2020-05-29,0.00000000 +NE,2020-05-30,0.00000000 +NE,2020-05-31,0.00000000 +NE,2020-06-01,2007.91197804 +NE,2020-06-02,0.00000000 +NE,2020-06-03,987.12233117 +NE,2020-06-04,1945.83220701 +NE,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_NH_anosmia_ms.csv b/google_health/cache/Data_NH_anosmia_ms.csv index 87082bcff..ea719e6f0 100644 --- a/google_health/cache/Data_NH_anosmia_ms.csv +++ b/google_health/cache/Data_NH_anosmia_ms.csv @@ -131,3 +131,24 @@ NH,2020-05-12,0.00000000 NH,2020-05-13,0.00000000 NH,2020-05-14,1276.17974638 NH,2020-05-15,0.00000000 +NH,2020-05-16,0.00000000 +NH,2020-05-17,0.00000000 +NH,2020-05-18,1221.30586153 +NH,2020-05-19,1273.03357811 +NH,2020-05-20,1295.13160302 +NH,2020-05-21,0.00000000 +NH,2020-05-22,2745.97879435 +NH,2020-05-23,0.00000000 +NH,2020-05-24,0.00000000 +NH,2020-05-25,0.00000000 +NH,2020-05-26,0.00000000 +NH,2020-05-27,0.00000000 +NH,2020-05-28,3812.03440228 +NH,2020-05-29,0.00000000 +NH,2020-05-30,0.00000000 +NH,2020-05-31,0.00000000 +NH,2020-06-01,0.00000000 +NH,2020-06-02,0.00000000 +NH,2020-06-03,0.00000000 +NH,2020-06-04,0.00000000 +NH,2020-06-05,3795.73504987 diff --git a/google_health/cache/Data_NJ_anosmia_ms.csv b/google_health/cache/Data_NJ_anosmia_ms.csv index 0d88d2643..ce178fe26 100644 --- a/google_health/cache/Data_NJ_anosmia_ms.csv +++ b/google_health/cache/Data_NJ_anosmia_ms.csv @@ -131,3 +131,24 @@ NJ,2020-05-12,640.97610683 NJ,2020-05-13,492.04379289 NJ,2020-05-14,637.97999370 NJ,2020-05-15,337.10705378 +NJ,2020-05-16,911.93528527 +NJ,2020-05-17,391.66707946 +NJ,2020-05-18,644.91549963 +NJ,2020-05-19,324.78076966 +NJ,2020-05-20,163.62374584 +NJ,2020-05-21,592.15085122 +NJ,2020-05-22,170.78704291 +NJ,2020-05-23,751.46470720 +NJ,2020-05-24,613.26748300 +NJ,2020-05-25,201.88737621 +NJ,2020-05-26,333.86279832 +NJ,2020-05-27,220.01192696 +NJ,2020-05-28,320.02303683 +NJ,2020-05-29,665.51362951 +NJ,2020-05-30,594.16618343 +NJ,2020-05-31,409.35303970 +NJ,2020-06-01,328.49301848 +NJ,2020-06-02,654.17523943 +NJ,2020-06-03,157.13747435 +NJ,2020-06-04,487.44605230 +NJ,2020-06-05,556.19300852 diff --git a/google_health/cache/Data_NM_anosmia_ms.csv b/google_health/cache/Data_NM_anosmia_ms.csv index 104f78306..424fe5f1f 100644 --- a/google_health/cache/Data_NM_anosmia_ms.csv +++ b/google_health/cache/Data_NM_anosmia_ms.csv @@ -131,3 +131,24 @@ NM,2020-05-12,951.22680693 NM,2020-05-13,0.00000000 NM,2020-05-14,0.00000000 NM,2020-05-15,0.00000000 +NM,2020-05-16,0.00000000 +NM,2020-05-17,0.00000000 +NM,2020-05-18,979.82336043 +NM,2020-05-19,0.00000000 +NM,2020-05-20,2934.00240873 +NM,2020-05-21,0.00000000 +NM,2020-05-22,3140.46963901 +NM,2020-05-23,0.00000000 +NM,2020-05-24,1183.82856253 +NM,2020-05-25,0.00000000 +NM,2020-05-26,1024.39548152 +NM,2020-05-27,0.00000000 +NM,2020-05-28,0.00000000 +NM,2020-05-29,0.00000000 +NM,2020-05-30,0.00000000 +NM,2020-05-31,0.00000000 +NM,2020-06-01,0.00000000 +NM,2020-06-02,1964.89221027 +NM,2020-06-03,938.25123018 +NM,2020-06-04,960.33078041 +NM,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_NV_anosmia_ms.csv b/google_health/cache/Data_NV_anosmia_ms.csv index baec0cd55..77a8c4687 100644 --- a/google_health/cache/Data_NV_anosmia_ms.csv +++ b/google_health/cache/Data_NV_anosmia_ms.csv @@ -131,3 +131,24 @@ NV,2020-05-12,0.00000000 NV,2020-05-13,0.00000000 NV,2020-05-14,582.85494656 NV,2020-05-15,0.00000000 +NV,2020-05-16,0.00000000 +NV,2020-05-17,0.00000000 +NV,2020-05-18,601.20025738 +NV,2020-05-19,0.00000000 +NV,2020-05-20,0.00000000 +NV,2020-05-21,609.63786935 +NV,2020-05-22,0.00000000 +NV,2020-05-23,1377.75759927 +NV,2020-05-24,0.00000000 +NV,2020-05-25,0.00000000 +NV,2020-05-26,0.00000000 +NV,2020-05-27,0.00000000 +NV,2020-05-28,604.89290727 +NV,2020-05-29,607.21554672 +NV,2020-05-30,0.00000000 +NV,2020-05-31,662.28955499 +NV,2020-06-01,0.00000000 +NV,2020-06-02,0.00000000 +NV,2020-06-03,0.00000000 +NV,2020-06-04,0.00000000 +NV,2020-06-05,592.71822866 diff --git a/google_health/cache/Data_NY_anosmia_ms.csv b/google_health/cache/Data_NY_anosmia_ms.csv index e66b2fc56..8d0119193 100644 --- a/google_health/cache/Data_NY_anosmia_ms.csv +++ b/google_health/cache/Data_NY_anosmia_ms.csv @@ -131,3 +131,24 @@ NY,2020-05-12,344.17482700 NY,2020-05-13,427.11329840 NY,2020-05-14,311.41893445 NY,2020-05-15,311.45080718 +NY,2020-05-16,418.84993895 +NY,2020-05-17,333.15196398 +NY,2020-05-18,703.49639942 +NY,2020-05-19,265.03987844 +NY,2020-05-20,518.00880028 +NY,2020-05-21,207.28864525 +NY,2020-05-22,383.76242255 +NY,2020-05-23,622.61266765 +NY,2020-05-24,198.01980315 +NY,2020-05-25,474.43709221 +NY,2020-05-26,371.19703536 +NY,2020-05-27,515.68432416 +NY,2020-05-28,200.24235153 +NY,2020-05-29,272.44229070 +NY,2020-05-30,95.35829585 +NY,2020-05-31,384.30263089 +NY,2020-06-01,338.12049136 +NY,2020-06-02,150.66823246 +NY,2020-06-03,341.06201793 +NY,2020-06-04,361.98880961 +NY,2020-06-05,307.57582261 diff --git a/google_health/cache/Data_OH_anosmia_ms.csv b/google_health/cache/Data_OH_anosmia_ms.csv index ae81c75a7..202b92268 100644 --- a/google_health/cache/Data_OH_anosmia_ms.csv +++ b/google_health/cache/Data_OH_anosmia_ms.csv @@ -131,3 +131,24 @@ OH,2020-05-12,999.18663734 OH,2020-05-13,147.03374511 OH,2020-05-14,414.63587163 OH,2020-05-15,140.02686899 +OH,2020-05-16,330.25942121 +OH,2020-05-17,664.18009584 +OH,2020-05-18,630.03248681 +OH,2020-05-19,141.81623735 +OH,2020-05-20,0.00000000 +OH,2020-05-21,523.43481364 +OH,2020-05-22,300.89555610 +OH,2020-05-23,705.04580923 +OH,2020-05-24,179.28902273 +OH,2020-05-25,519.35312981 +OH,2020-05-26,766.61307926 +OH,2020-05-27,619.34021868 +OH,2020-05-28,305.71804573 +OH,2020-05-29,689.52410724 +OH,2020-05-30,526.42798364 +OH,2020-05-31,177.95505264 +OH,2020-06-01,159.66729970 +OH,2020-06-02,318.56929743 +OH,2020-06-03,678.14498980 +OH,2020-06-04,145.83098263 +OH,2020-06-05,300.91615899 diff --git a/google_health/cache/Data_OK_anosmia_ms.csv b/google_health/cache/Data_OK_anosmia_ms.csv index 8a6b60a60..9f3d092d6 100644 --- a/google_health/cache/Data_OK_anosmia_ms.csv +++ b/google_health/cache/Data_OK_anosmia_ms.csv @@ -131,3 +131,24 @@ OK,2020-05-12,564.23804988 OK,2020-05-13,0.00000000 OK,2020-05-14,573.95667155 OK,2020-05-15,566.60206113 +OK,2020-05-16,0.00000000 +OK,2020-05-17,662.05416408 +OK,2020-05-18,605.37110299 +OK,2020-05-19,0.00000000 +OK,2020-05-20,1815.56996171 +OK,2020-05-21,0.00000000 +OK,2020-05-22,0.00000000 +OK,2020-05-23,0.00000000 +OK,2020-05-24,0.00000000 +OK,2020-05-25,0.00000000 +OK,2020-05-26,1186.35807510 +OK,2020-05-27,0.00000000 +OK,2020-05-28,0.00000000 +OK,2020-05-29,0.00000000 +OK,2020-05-30,0.00000000 +OK,2020-05-31,0.00000000 +OK,2020-06-01,0.00000000 +OK,2020-06-02,1231.37455211 +OK,2020-06-03,0.00000000 +OK,2020-06-04,1152.63338228 +OK,2020-06-05,587.30360010 diff --git a/google_health/cache/Data_OR_anosmia_ms.csv b/google_health/cache/Data_OR_anosmia_ms.csv index 45c04196e..e6f9ee1c1 100644 --- a/google_health/cache/Data_OR_anosmia_ms.csv +++ b/google_health/cache/Data_OR_anosmia_ms.csv @@ -131,3 +131,24 @@ OR,2020-05-12,0.00000000 OR,2020-05-13,798.34991583 OR,2020-05-14,0.00000000 OR,2020-05-15,0.00000000 +OR,2020-05-16,0.00000000 +OR,2020-05-17,462.67851256 +OR,2020-05-18,403.73699002 +OR,2020-05-19,402.48227648 +OR,2020-05-20,0.00000000 +OR,2020-05-21,1651.98116146 +OR,2020-05-22,0.00000000 +OR,2020-05-23,0.00000000 +OR,2020-05-24,0.00000000 +OR,2020-05-25,484.03078207 +OR,2020-05-26,0.00000000 +OR,2020-05-27,0.00000000 +OR,2020-05-28,0.00000000 +OR,2020-05-29,0.00000000 +OR,2020-05-30,0.00000000 +OR,2020-05-31,0.00000000 +OR,2020-06-01,0.00000000 +OR,2020-06-02,0.00000000 +OR,2020-06-03,405.22163245 +OR,2020-06-04,0.00000000 +OR,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_PA_anosmia_ms.csv b/google_health/cache/Data_PA_anosmia_ms.csv index aa8fb6f31..20e9a1b0b 100644 --- a/google_health/cache/Data_PA_anosmia_ms.csv +++ b/google_health/cache/Data_PA_anosmia_ms.csv @@ -131,3 +131,24 @@ PA,2020-05-12,262.19620842 PA,2020-05-13,0.00000000 PA,2020-05-14,262.39844829 PA,2020-05-15,397.62786995 +PA,2020-05-16,157.94829557 +PA,2020-05-17,0.00000000 +PA,2020-05-18,840.87732126 +PA,2020-05-19,465.65247040 +PA,2020-05-20,335.58595749 +PA,2020-05-21,276.76416530 +PA,2020-05-22,400.92381541 +PA,2020-05-23,777.29110986 +PA,2020-05-24,819.76186884 +PA,2020-05-25,325.81367869 +PA,2020-05-26,280.33714321 +PA,2020-05-27,273.88708368 +PA,2020-05-28,398.82914389 +PA,2020-05-29,756.67061641 +PA,2020-05-30,155.00257134 +PA,2020-05-31,471.93490554 +PA,2020-06-01,612.07408377 +PA,2020-06-02,636.88553211 +PA,2020-06-03,517.03614208 +PA,2020-06-04,403.64619168 +PA,2020-06-05,270.95753596 diff --git a/google_health/cache/Data_RI_anosmia_ms.csv b/google_health/cache/Data_RI_anosmia_ms.csv index 2d126e678..023e0fe1a 100644 --- a/google_health/cache/Data_RI_anosmia_ms.csv +++ b/google_health/cache/Data_RI_anosmia_ms.csv @@ -131,3 +131,24 @@ RI,2020-05-12,2914.96379113 RI,2020-05-13,0.00000000 RI,2020-05-14,0.00000000 RI,2020-05-15,3105.10790250 +RI,2020-05-16,0.00000000 +RI,2020-05-17,0.00000000 +RI,2020-05-18,0.00000000 +RI,2020-05-19,0.00000000 +RI,2020-05-20,0.00000000 +RI,2020-05-21,0.00000000 +RI,2020-05-22,0.00000000 +RI,2020-05-23,0.00000000 +RI,2020-05-24,0.00000000 +RI,2020-05-25,0.00000000 +RI,2020-05-26,0.00000000 +RI,2020-05-27,1505.84306551 +RI,2020-05-28,0.00000000 +RI,2020-05-29,0.00000000 +RI,2020-05-30,0.00000000 +RI,2020-05-31,1815.21147214 +RI,2020-06-01,0.00000000 +RI,2020-06-02,0.00000000 +RI,2020-06-03,0.00000000 +RI,2020-06-04,0.00000000 +RI,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_SC_anosmia_ms.csv b/google_health/cache/Data_SC_anosmia_ms.csv index 3cf28cae5..5653624c5 100644 --- a/google_health/cache/Data_SC_anosmia_ms.csv +++ b/google_health/cache/Data_SC_anosmia_ms.csv @@ -131,3 +131,24 @@ SC,2020-05-12,393.67622735 SC,2020-05-13,0.00000000 SC,2020-05-14,0.00000000 SC,2020-05-15,0.00000000 +SC,2020-05-16,0.00000000 +SC,2020-05-17,446.02269433 +SC,2020-05-18,377.93419683 +SC,2020-05-19,749.82245055 +SC,2020-05-20,748.98424021 +SC,2020-05-21,776.93319653 +SC,2020-05-22,0.00000000 +SC,2020-05-23,0.00000000 +SC,2020-05-24,0.00000000 +SC,2020-05-25,426.61580879 +SC,2020-05-26,780.76803989 +SC,2020-05-27,0.00000000 +SC,2020-05-28,0.00000000 +SC,2020-05-29,0.00000000 +SC,2020-05-30,894.90017930 +SC,2020-05-31,0.00000000 +SC,2020-06-01,400.69531448 +SC,2020-06-02,0.00000000 +SC,2020-06-03,796.50197937 +SC,2020-06-04,0.00000000 +SC,2020-06-05,388.49483599 diff --git a/google_health/cache/Data_SD_anosmia_ms.csv b/google_health/cache/Data_SD_anosmia_ms.csv index a09a4deb8..3ac8aeb41 100644 --- a/google_health/cache/Data_SD_anosmia_ms.csv +++ b/google_health/cache/Data_SD_anosmia_ms.csv @@ -131,3 +131,24 @@ SD,2020-05-12,0.00000000 SD,2020-05-13,0.00000000 SD,2020-05-14,0.00000000 SD,2020-05-15,0.00000000 +SD,2020-05-16,2955.95625185 +SD,2020-05-17,0.00000000 +SD,2020-05-18,0.00000000 +SD,2020-05-19,0.00000000 +SD,2020-05-20,0.00000000 +SD,2020-05-21,0.00000000 +SD,2020-05-22,0.00000000 +SD,2020-05-23,0.00000000 +SD,2020-05-24,0.00000000 +SD,2020-05-25,0.00000000 +SD,2020-05-26,0.00000000 +SD,2020-05-27,2812.14848144 +SD,2020-05-28,0.00000000 +SD,2020-05-29,0.00000000 +SD,2020-05-30,0.00000000 +SD,2020-05-31,0.00000000 +SD,2020-06-01,0.00000000 +SD,2020-06-02,8498.58356941 +SD,2020-06-03,0.00000000 +SD,2020-06-04,0.00000000 +SD,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_TN_anosmia_ms.csv b/google_health/cache/Data_TN_anosmia_ms.csv index d174d14d8..f50fe1679 100644 --- a/google_health/cache/Data_TN_anosmia_ms.csv +++ b/google_health/cache/Data_TN_anosmia_ms.csv @@ -131,3 +131,24 @@ TN,2020-05-12,280.97995197 TN,2020-05-13,0.00000000 TN,2020-05-14,827.62692631 TN,2020-05-15,561.24020841 +TN,2020-05-16,646.30756472 +TN,2020-05-17,642.09444624 +TN,2020-05-18,275.70094658 +TN,2020-05-19,0.00000000 +TN,2020-05-20,1105.20985454 +TN,2020-05-21,574.76271334 +TN,2020-05-22,575.90406214 +TN,2020-05-23,653.54581587 +TN,2020-05-24,0.00000000 +TN,2020-05-25,963.69221109 +TN,2020-05-26,0.00000000 +TN,2020-05-27,0.00000000 +TN,2020-05-28,568.42782110 +TN,2020-05-29,298.49637738 +TN,2020-05-30,0.00000000 +TN,2020-05-31,333.33869925 +TN,2020-06-01,867.72897214 +TN,2020-06-02,291.33866160 +TN,2020-06-03,278.56360088 +TN,2020-06-04,270.72503061 +TN,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_TX_anosmia_ms.csv b/google_health/cache/Data_TX_anosmia_ms.csv index b9a4d8b97..6606297c1 100644 --- a/google_health/cache/Data_TX_anosmia_ms.csv +++ b/google_health/cache/Data_TX_anosmia_ms.csv @@ -131,3 +131,24 @@ TX,2020-05-12,491.13116304 TX,2020-05-13,346.53418632 TX,2020-05-14,293.96548579 TX,2020-05-15,291.45574057 +TX,2020-05-16,263.44046157 +TX,2020-05-17,275.03181706 +TX,2020-05-18,285.11866803 +TX,2020-05-19,316.21752212 +TX,2020-05-20,237.62031085 +TX,2020-05-21,180.60723772 +TX,2020-05-22,185.35575391 +TX,2020-05-23,418.16864851 +TX,2020-05-24,0.00000000 +TX,2020-05-25,308.39356584 +TX,2020-05-26,212.62295386 +TX,2020-05-27,241.13306626 +TX,2020-05-28,276.76531881 +TX,2020-05-29,391.34230962 +TX,2020-05-30,352.37934440 +TX,2020-05-31,213.20183488 +TX,2020-06-01,244.42586176 +TX,2020-06-02,276.48574963 +TX,2020-06-03,177.08874791 +TX,2020-06-04,208.27865542 +TX,2020-06-05,233.70720592 diff --git a/google_health/cache/Data_UT_anosmia_ms.csv b/google_health/cache/Data_UT_anosmia_ms.csv index 41c1853e0..9a1d9780a 100644 --- a/google_health/cache/Data_UT_anosmia_ms.csv +++ b/google_health/cache/Data_UT_anosmia_ms.csv @@ -131,3 +131,24 @@ UT,2020-05-12,1100.65363697 UT,2020-05-13,0.00000000 UT,2020-05-14,0.00000000 UT,2020-05-15,0.00000000 +UT,2020-05-16,1340.99625506 +UT,2020-05-17,0.00000000 +UT,2020-05-18,2236.57507699 +UT,2020-05-19,0.00000000 +UT,2020-05-20,551.69681951 +UT,2020-05-21,0.00000000 +UT,2020-05-22,0.00000000 +UT,2020-05-23,682.72544058 +UT,2020-05-24,0.00000000 +UT,2020-05-25,1393.37743690 +UT,2020-05-26,0.00000000 +UT,2020-05-27,1156.09491409 +UT,2020-05-28,0.00000000 +UT,2020-05-29,0.00000000 +UT,2020-05-30,0.00000000 +UT,2020-05-31,1960.35616115 +UT,2020-06-01,1743.08361435 +UT,2020-06-02,0.00000000 +UT,2020-06-03,1695.61851621 +UT,2020-06-04,561.78403975 +UT,2020-06-05,562.78515344 diff --git a/google_health/cache/Data_VA_anosmia_ms.csv b/google_health/cache/Data_VA_anosmia_ms.csv index beabbebee..03de4176e 100644 --- a/google_health/cache/Data_VA_anosmia_ms.csv +++ b/google_health/cache/Data_VA_anosmia_ms.csv @@ -131,3 +131,24 @@ VA,2020-05-12,553.39902241 VA,2020-05-13,930.57264771 VA,2020-05-14,370.30068818 VA,2020-05-15,758.33536504 +VA,2020-05-16,790.62173053 +VA,2020-05-17,448.99179279 +VA,2020-05-18,729.20368706 +VA,2020-05-19,363.79198345 +VA,2020-05-20,182.57919654 +VA,2020-05-21,561.87082675 +VA,2020-05-22,191.98247803 +VA,2020-05-23,456.28095258 +VA,2020-05-24,228.43985512 +VA,2020-05-25,654.61308175 +VA,2020-05-26,559.70111562 +VA,2020-05-27,369.63624846 +VA,2020-05-28,0.00000000 +VA,2020-05-29,190.94852706 +VA,2020-05-30,659.44892800 +VA,2020-05-31,228.81674833 +VA,2020-06-01,383.70244859 +VA,2020-06-02,384.19794641 +VA,2020-06-03,911.81641596 +VA,2020-06-04,351.39138024 +VA,2020-06-05,355.70452774 diff --git a/google_health/cache/Data_VT_anosmia_ms.csv b/google_health/cache/Data_VT_anosmia_ms.csv index b6cde44e6..100f66d79 100644 --- a/google_health/cache/Data_VT_anosmia_ms.csv +++ b/google_health/cache/Data_VT_anosmia_ms.csv @@ -131,3 +131,24 @@ VT,2020-05-12,0.00000000 VT,2020-05-13,0.00000000 VT,2020-05-14,0.00000000 VT,2020-05-15,0.00000000 +VT,2020-05-16,0.00000000 +VT,2020-05-17,0.00000000 +VT,2020-05-18,6151.95324516 +VT,2020-05-19,3145.67055258 +VT,2020-05-20,0.00000000 +VT,2020-05-21,6648.93617021 +VT,2020-05-22,0.00000000 +VT,2020-05-23,0.00000000 +VT,2020-05-24,0.00000000 +VT,2020-05-25,0.00000000 +VT,2020-05-26,0.00000000 +VT,2020-05-27,0.00000000 +VT,2020-05-28,0.00000000 +VT,2020-05-29,0.00000000 +VT,2020-05-30,0.00000000 +VT,2020-05-31,0.00000000 +VT,2020-06-01,0.00000000 +VT,2020-06-02,0.00000000 +VT,2020-06-03,0.00000000 +VT,2020-06-04,0.00000000 +VT,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_WA_anosmia_ms.csv b/google_health/cache/Data_WA_anosmia_ms.csv index e29c71d2d..bc984ed75 100644 --- a/google_health/cache/Data_WA_anosmia_ms.csv +++ b/google_health/cache/Data_WA_anosmia_ms.csv @@ -131,3 +131,24 @@ WA,2020-05-12,217.53693513 WA,2020-05-13,221.46448492 WA,2020-05-14,664.33185129 WA,2020-05-15,229.59441190 +WA,2020-05-16,753.87302561 +WA,2020-05-17,758.55661675 +WA,2020-05-18,529.45178066 +WA,2020-05-19,673.92955540 +WA,2020-05-20,443.24419562 +WA,2020-05-21,453.24980834 +WA,2020-05-22,0.00000000 +WA,2020-05-23,0.00000000 +WA,2020-05-24,548.88932298 +WA,2020-05-25,252.30350385 +WA,2020-05-26,0.00000000 +WA,2020-05-27,670.75402741 +WA,2020-05-28,0.00000000 +WA,2020-05-29,469.78959841 +WA,2020-05-30,488.02858859 +WA,2020-05-31,486.12051710 +WA,2020-06-01,0.00000000 +WA,2020-06-02,0.00000000 +WA,2020-06-03,0.00000000 +WA,2020-06-04,0.00000000 +WA,2020-06-05,216.97157254 diff --git a/google_health/cache/Data_WI_anosmia_ms.csv b/google_health/cache/Data_WI_anosmia_ms.csv index 0a3882f60..a499dbaf5 100644 --- a/google_health/cache/Data_WI_anosmia_ms.csv +++ b/google_health/cache/Data_WI_anosmia_ms.csv @@ -131,3 +131,24 @@ WI,2020-05-12,0.00000000 WI,2020-05-13,617.94608243 WI,2020-05-14,299.53938243 WI,2020-05-15,0.00000000 +WI,2020-05-16,378.53961689 +WI,2020-05-17,0.00000000 +WI,2020-05-18,888.32532136 +WI,2020-05-19,304.08035425 +WI,2020-05-20,634.44164895 +WI,2020-05-21,989.34593498 +WI,2020-05-22,1344.43339304 +WI,2020-05-23,376.70822321 +WI,2020-05-24,0.00000000 +WI,2020-05-25,736.51104393 +WI,2020-05-26,315.43605802 +WI,2020-05-27,952.59411316 +WI,2020-05-28,305.99103384 +WI,2020-05-29,327.11026062 +WI,2020-05-30,1274.50163524 +WI,2020-05-31,772.33548591 +WI,2020-06-01,0.00000000 +WI,2020-06-02,322.71300877 +WI,2020-06-03,0.00000000 +WI,2020-06-04,634.84631318 +WI,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_WV_anosmia_ms.csv b/google_health/cache/Data_WV_anosmia_ms.csv index aae792ff8..f5acae919 100644 --- a/google_health/cache/Data_WV_anosmia_ms.csv +++ b/google_health/cache/Data_WV_anosmia_ms.csv @@ -131,3 +131,24 @@ WV,2020-05-12,0.00000000 WV,2020-05-13,0.00000000 WV,2020-05-14,0.00000000 WV,2020-05-15,0.00000000 +WV,2020-05-16,0.00000000 +WV,2020-05-17,0.00000000 +WV,2020-05-18,1426.12664005 +WV,2020-05-19,0.00000000 +WV,2020-05-20,0.00000000 +WV,2020-05-21,0.00000000 +WV,2020-05-22,0.00000000 +WV,2020-05-23,0.00000000 +WV,2020-05-24,0.00000000 +WV,2020-05-25,3235.72237502 +WV,2020-05-26,0.00000000 +WV,2020-05-27,1420.28464355 +WV,2020-05-28,0.00000000 +WV,2020-05-29,0.00000000 +WV,2020-05-30,0.00000000 +WV,2020-05-31,0.00000000 +WV,2020-06-01,0.00000000 +WV,2020-06-02,1517.91135398 +WV,2020-06-03,0.00000000 +WV,2020-06-04,0.00000000 +WV,2020-06-05,0.00000000 diff --git a/google_health/cache/Data_WY_anosmia_ms.csv b/google_health/cache/Data_WY_anosmia_ms.csv index 8e2815dfa..53a144073 100644 --- a/google_health/cache/Data_WY_anosmia_ms.csv +++ b/google_health/cache/Data_WY_anosmia_ms.csv @@ -131,3 +131,24 @@ WY,2020-05-12,3797.94910748 WY,2020-05-13,0.00000000 WY,2020-05-14,0.00000000 WY,2020-05-15,0.00000000 +WY,2020-05-16,0.00000000 +WY,2020-05-17,0.00000000 +WY,2020-05-18,0.00000000 +WY,2020-05-19,0.00000000 +WY,2020-05-20,7704.16024653 +WY,2020-05-21,0.00000000 +WY,2020-05-22,0.00000000 +WY,2020-05-23,0.00000000 +WY,2020-05-24,0.00000000 +WY,2020-05-25,0.00000000 +WY,2020-05-26,0.00000000 +WY,2020-05-27,0.00000000 +WY,2020-05-28,0.00000000 +WY,2020-05-29,0.00000000 +WY,2020-05-30,0.00000000 +WY,2020-05-31,4926.10837438 +WY,2020-06-01,0.00000000 +WY,2020-06-02,0.00000000 +WY,2020-06-03,0.00000000 +WY,2020-06-04,0.00000000 +WY,2020-06-05,0.00000000 From 8c538e3c990eacba6e69364a4cb5fd14e38fa064 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Tue, 9 Jun 2020 15:35:47 -0400 Subject: [PATCH 07/44] Cut 7-day avg signal name --- jhu/delphi_jhu/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index fece9f105..4fa29f080 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -45,7 +45,7 @@ } SMOOTHERS_MAP = { "unsmoothed": (identity, '', False), - "seven_day_average": (seven_day_moving_average, '7day_avg_', True), + "seven_day_average": (seven_day_moving_average, '7dav_', True), } GEO_RESOLUTIONS = [ "county", From e2d8254c7d3f7b755e505e0698fe96cd2d5af9a6 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Tue, 9 Jun 2020 15:38:17 -0400 Subject: [PATCH 08/44] Cut 7-day avg signal name --- jhu/tests/test_smooth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/tests/test_smooth.py b/jhu/tests/test_smooth.py index 1b43841bf..1f77fc76a 100644 --- a/jhu/tests/test_smooth.py +++ b/jhu/tests/test_smooth.py @@ -14,7 +14,7 @@ def test_output_files_smoothed(self, run_as_module): smoothed = pd.read_csv( join("receiving", - f"{dates[-1]}_state_confirmed_7day_avg_cumulative_num.csv") + f"{dates[-1]}_state_confirmed_7dav_cumulative_num.csv") ) raw = pd.concat([ From 030d38ad172c1a412261c6b153246459313c451c Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Wed, 10 Jun 2020 00:08:42 -0400 Subject: [PATCH 09/44] update naming for megacounty --- jhu/delphi_jhu/geo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jhu/delphi_jhu/geo.py b/jhu/delphi_jhu/geo.py index dba93c371..22d7a65cb 100644 --- a/jhu/delphi_jhu/geo.py +++ b/jhu/delphi_jhu/geo.py @@ -221,6 +221,7 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): merged["population"] = merged["population"] * merged["pop_prop"] df = merged.drop(["zip", "pop_prop", "hrrnum", "cbsa_id"], axis=1) if sensor not in PROP_SENSORS: + df_mega["geo_id"] = df_mega["geo_id"].apply(fips_to_state) df = df.append(df_mega) df = df.drop("fips", axis=1) df = df.groupby(["geo_id", "timestamp"]).sum().reset_index() From f66b43e9726f083ee94260d2d019186d0aac056d Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Wed, 10 Jun 2020 00:09:17 -0400 Subject: [PATCH 10/44] modify test cases for megacounty aggregation --- jhu/tests/test_geo.py | 121 +++++++++++++++++++++++++++++++----------- 1 file changed, 90 insertions(+), 31 deletions(-) diff --git a/jhu/tests/test_geo.py b/jhu/tests/test_geo.py index 8d45eb336..7dd74c0c4 100644 --- a/jhu/tests/test_geo.py +++ b/jhu/tests/test_geo.py @@ -25,6 +25,13 @@ def test_normal(self): assert fips_to_state("12003") == "fl" assert fips_to_state("50103") == "vt" assert fips_to_state("15003") == "hi" + + def test_mega(self): + + assert fips_to_state("01000") == "al" + assert fips_to_state("13000") == "ga" + assert fips_to_state("44000") == "ri" + assert fips_to_state("12000") == "fl" class TestDisburse: @@ -74,15 +81,27 @@ def test_county(self): } ) - new_df = geo_map(df, "county", MAP_DF) + df_mega = pd.DataFrame( + { + "fips": ["90013", "90001"], + "timestamp": ["2020-02-15", "2020-02-15"], + "new_counts": [8, 2], + "cumulative_counts": [80, 12], + "population": [np.nan, np.nan], + } + ) + + df = df.append(df_mega) + + new_df = geo_map(df, "county", MAP_DF, 'new_counts') exp_incidence = df["new_counts"] / df["population"] * 100000 exp_cprop = df["cumulative_counts"] / df["population"] * 100000 - - assert set(new_df["geo_id"].values) == set(df["fips"].values) + + assert set(new_df["geo_id"].values) == set(['01000', '13000', '48027', '50103', '53003']) assert set(new_df["timestamp"].values) == set(df["timestamp"].values) - assert set(new_df["incidence"].values) == set(exp_incidence.values) - assert set(new_df["cumulative_prop"].values) == set(exp_cprop.values) + assert set(new_df["incidence"].values) - set(exp_incidence.values) == set([np.Inf]) + assert set(new_df["cumulative_prop"].values) - set(exp_cprop.values) == set([np.Inf]) def test_state(self): @@ -95,19 +114,31 @@ def test_state(self): "population": [100, 2100, 300, 25], } ) + + df_mega = pd.DataFrame( + { + "fips": ["90013", "90001", "04000", "25000"], + "timestamp": ["2020-02-15", "2020-02-15", "2020-02-15", "2020-02-15"], + "new_counts": [8, 2, 5, 10], + "cumulative_counts": [80, 12, 30, 100], + "population": [np.nan, np.nan, np.nan, np.nan], + } + ) + + df = df.append(df_mega) - new_df = geo_map(df, "state", MAP_DF) + new_df = geo_map(df, "state", MAP_DF, 'new_counts') - exp_incidence = np.array([27, 13]) / np.array([2500, 25]) * 100000 - exp_cprop = np.array([165, 60]) / np.array([2500, 25]) * 100000 + exp_incidence = np.array([27 + 5, 13 + 10]) / np.array([2500, 25]) * 100000 + exp_cprop = np.array([165 + 30, 60 + 100]) / np.array([2500, 25]) * 100000 - assert (new_df["geo_id"].values == ["az", "ma"]).all() - assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() - assert (new_df["new_counts"].values == [27, 13]).all() - assert (new_df["cumulative_counts"].values == [165, 60]).all() - assert (new_df["population"].values == [2500, 25]).all() - assert (new_df["incidence"].values == exp_incidence).all() - assert (new_df["cumulative_prop"].values == exp_cprop).all() + assert set(new_df["geo_id"].values) == set(["az", "ma", "al", "ga"]) + assert set(new_df["timestamp"].values) == set(["2020-02-15"]) + assert set(new_df["new_counts"].values) == set([32, 23, 2, 8]) + assert set(new_df["cumulative_counts"].values) == set([195, 160, 80, 12]) + assert set(new_df["population"].values) == set([2500, 25, 0]) + assert set(new_df["incidence"].values) - set(exp_incidence) == set([np.Inf]) + assert set(new_df["cumulative_prop"].values) - set(exp_cprop) == set([np.Inf]) def test_hrr(self): @@ -121,18 +152,32 @@ def test_hrr(self): } ) - new_df = geo_map(df, "hrr", MAP_DF) + df_mega = pd.DataFrame( + { + "fips": ["90013", "90001"], + "timestamp": ["2020-02-15", "2020-02-15"], + "new_counts": [8, 2], + "cumulative_counts": [80, 12], + "population": [np.nan, np.nan], + } + ) + + df = df.append(df_mega) + + new_df = geo_map(df, "hrr", MAP_DF, 'new_counts') exp_incidence = np.array([13, 27]) / np.array([25, 2500]) * 100000 exp_cprop = np.array([60, 165]) / np.array([25, 2500]) * 100000 - assert (new_df["geo_id"].values == [110, 147]).all() - assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() - assert new_df["new_counts"].values == pytest.approx([13.0, 27.0]) - assert new_df["cumulative_counts"].values == pytest.approx([60, 165]) - assert new_df["population"].values == pytest.approx([25, 2500]) - assert new_df["incidence"].values == pytest.approx(exp_incidence) - assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) + assert set(new_df["geo_id"].values) == set([110, 147, "al", "ga"]) + assert set(new_df["timestamp"].values) == set(["2020-02-15"]) + assert new_df["new_counts"].values == pytest.approx([13.0, 27.0, 2, 8]) + assert new_df["cumulative_counts"].values == pytest.approx([60, 165, 12, 80]) + assert new_df["population"].values == pytest.approx([25, 2500, 0, 0]) + assert new_df["incidence"].values == pytest.approx(np.append(exp_incidence, + [np.Inf, np.Inf])) + assert new_df["cumulative_prop"].values == pytest.approx(np.append(exp_cprop, + [np.Inf, np.Inf])) def test_msa(self): @@ -145,16 +190,30 @@ def test_msa(self): "population": [100, 2100, 300, 25], } ) + + df_mega = pd.DataFrame( + { + "fips": ["90013", "90001"], + "timestamp": ["2020-02-15", "2020-02-15"], + "new_counts": [8, 2], + "cumulative_counts": [80, 12], + "population": [np.nan, np.nan], + } + ) + + df = df.append(df_mega) - new_df = geo_map(df, "msa", MAP_DF) + new_df = geo_map(df, "msa", MAP_DF, 'new_counts') exp_incidence = np.array([2, 13]) / np.array([300, 25]) * 100000 exp_cprop = np.array([45, 60]) / np.array([300, 25]) * 100000 - assert (new_df["geo_id"].values == [31420, 49340]).all() - assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() - assert new_df["new_counts"].values == pytest.approx([2.0, 13.0]) - assert new_df["cumulative_counts"].values == pytest.approx([45, 60]) - assert new_df["population"].values == pytest.approx([300, 25]) - assert new_df["incidence"].values == pytest.approx(exp_incidence) - assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) + assert set(new_df["geo_id"].values) == set([31420, 49340, "al", "ga"]) + assert set(new_df["timestamp"]) == set(["2020-02-15"]) + assert new_df["new_counts"].values == pytest.approx([2.0, 13.0, 2.0, 8.0]) + assert new_df["cumulative_counts"].values == pytest.approx([45, 60, 12, 80]) + assert new_df["population"].values == pytest.approx([300, 25, 0, 0]) + assert new_df["incidence"].values == pytest.approx(np.append(exp_incidence, + [np.Inf, np.Inf])) + assert new_df["cumulative_prop"].values == pytest.approx(np.append(exp_cprop, + [np.Inf, np.Inf])) From 49be65daf62d04f2117be678dadff3559ae11e39 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Wed, 10 Jun 2020 00:24:08 -0400 Subject: [PATCH 11/44] delete whitespace --- jhu/delphi_jhu/pull.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/delphi_jhu/pull.py b/jhu/delphi_jhu/pull.py index 3be512559..d4131db82 100644 --- a/jhu/delphi_jhu/pull.py +++ b/jhu/delphi_jhu/pull.py @@ -85,7 +85,7 @@ def pull_jhu_data(base_url: str, metric: str, pop_df: pd.DataFrame) -> pd.DataFr ] # Merge in population LOWERCASE, consistent across confirmed and deaths # Set population as NAN for fake fips - df = pd.merge(df, pop_df, on="FIPS", how = 'left') + df = pd.merge(df, pop_df, on="FIPS", how='left') # Manual correction for PR df.loc[df["FIPS"] == 72, "FIPS"] = 72000 From 7ee404cf4afd74f5f8f3ec47a5052b3a458459fc Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Wed, 10 Jun 2020 00:28:46 -0400 Subject: [PATCH 12/44] delete whitespace --- jhu/delphi_jhu/geo.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/jhu/delphi_jhu/geo.py b/jhu/delphi_jhu/geo.py index 22d7a65cb..4d4ed9698 100644 --- a/jhu/delphi_jhu/geo.py +++ b/jhu/delphi_jhu/geo.py @@ -181,12 +181,12 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): PROP_SENSORS = ("incidence", "cumulative_prop") if geo_res not in VALID_GEO_RES: raise ValueError(f"geo_res must be one of {VALID_GEO_RES}") - + df_mega = df[df['fips'].astype(int) >= 90001].copy() df_mega['geo_id'] = df_mega['fips'].apply(lambda x: JHU_FAKE_FIPS_TO_MEGA_FIPS[x]) - + df = df[df['fips'].astype(int) < 90001].copy() - + if geo_res == "county": df["geo_id"] = df["fips"] if sensor not in PROP_SENSORS: @@ -225,7 +225,7 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): df = df.append(df_mega) df = df.drop("fips", axis=1) df = df.groupby(["geo_id", "timestamp"]).sum().reset_index() - + # Value would be negative for megacounties , which would not be considered in the main function df["incidence"] = df["new_counts"] / df["population"] * INCIDENCE_BASE df["cumulative_prop"] = df["cumulative_counts"] / df["population"] * INCIDENCE_BASE From 25162d0baa8270d8954b2715c0fd2d6e2256c650 Mon Sep 17 00:00:00 2001 From: Jingjing Tang <31444565+jingjtang@users.noreply.github.com> Date: Wed, 10 Jun 2020 20:56:52 -0400 Subject: [PATCH 13/44] Update jhu/tests/test_geo.py Co-authored-by: krivard --- jhu/tests/test_geo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/tests/test_geo.py b/jhu/tests/test_geo.py index 7dd74c0c4..7796d037b 100644 --- a/jhu/tests/test_geo.py +++ b/jhu/tests/test_geo.py @@ -135,7 +135,7 @@ def test_state(self): assert set(new_df["geo_id"].values) == set(["az", "ma", "al", "ga"]) assert set(new_df["timestamp"].values) == set(["2020-02-15"]) assert set(new_df["new_counts"].values) == set([32, 23, 2, 8]) - assert set(new_df["cumulative_counts"].values) == set([195, 160, 80, 12]) + assert set(new_df["cumulative_counts"].values) == set([195, 160, 12, 80]) assert set(new_df["population"].values) == set([2500, 25, 0]) assert set(new_df["incidence"].values) - set(exp_incidence) == set([np.Inf]) assert set(new_df["cumulative_prop"].values) - set(exp_cprop) == set([np.Inf]) From 0dae1693eee0b729d8f628607ea721fd24b6f271 Mon Sep 17 00:00:00 2001 From: Jingjing Tang <31444565+jingjtang@users.noreply.github.com> Date: Wed, 10 Jun 2020 20:57:51 -0400 Subject: [PATCH 14/44] Update jhu/tests/test_geo.py Co-authored-by: krivard --- jhu/tests/test_geo.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/jhu/tests/test_geo.py b/jhu/tests/test_geo.py index 7796d037b..633255642 100644 --- a/jhu/tests/test_geo.py +++ b/jhu/tests/test_geo.py @@ -169,15 +169,13 @@ def test_hrr(self): exp_incidence = np.array([13, 27]) / np.array([25, 2500]) * 100000 exp_cprop = np.array([60, 165]) / np.array([25, 2500]) * 100000 - assert set(new_df["geo_id"].values) == set([110, 147, "al", "ga"]) - assert set(new_df["timestamp"].values) == set(["2020-02-15"]) - assert new_df["new_counts"].values == pytest.approx([13.0, 27.0, 2, 8]) - assert new_df["cumulative_counts"].values == pytest.approx([60, 165, 12, 80]) - assert new_df["population"].values == pytest.approx([25, 2500, 0, 0]) - assert new_df["incidence"].values == pytest.approx(np.append(exp_incidence, - [np.Inf, np.Inf])) - assert new_df["cumulative_prop"].values == pytest.approx(np.append(exp_cprop, - [np.Inf, np.Inf])) + assert (new_df["geo_id"].values == [110, 147]).all() + assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() + assert new_df["new_counts"].values == pytest.approx([13.0, 27.0]) + assert new_df["cumulative_counts"].values == pytest.approx([60, 165]) + assert new_df["population"].values == pytest.approx([25, 2500]) + assert new_df["incidence"].values == pytest.approx(exp_incidence) + assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) def test_msa(self): From 64790fba8ac4651a2a4baa1965b598e942af2b5f Mon Sep 17 00:00:00 2001 From: Jingjing Tang <31444565+jingjtang@users.noreply.github.com> Date: Wed, 10 Jun 2020 20:58:12 -0400 Subject: [PATCH 15/44] Update jhu/tests/test_geo.py Co-authored-by: krivard --- jhu/tests/test_geo.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/jhu/tests/test_geo.py b/jhu/tests/test_geo.py index 633255642..5a7274180 100644 --- a/jhu/tests/test_geo.py +++ b/jhu/tests/test_geo.py @@ -206,12 +206,10 @@ def test_msa(self): exp_incidence = np.array([2, 13]) / np.array([300, 25]) * 100000 exp_cprop = np.array([45, 60]) / np.array([300, 25]) * 100000 - assert set(new_df["geo_id"].values) == set([31420, 49340, "al", "ga"]) - assert set(new_df["timestamp"]) == set(["2020-02-15"]) - assert new_df["new_counts"].values == pytest.approx([2.0, 13.0, 2.0, 8.0]) - assert new_df["cumulative_counts"].values == pytest.approx([45, 60, 12, 80]) - assert new_df["population"].values == pytest.approx([300, 25, 0, 0]) - assert new_df["incidence"].values == pytest.approx(np.append(exp_incidence, - [np.Inf, np.Inf])) - assert new_df["cumulative_prop"].values == pytest.approx(np.append(exp_cprop, - [np.Inf, np.Inf])) + assert (new_df["geo_id"].values == [31420, 49340]).all() + assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() + assert new_df["new_counts"].values == pytest.approx([2.0, 13.0]) + assert new_df["cumulative_counts"].values == pytest.approx([45, 60]) + assert new_df["population"].values == pytest.approx([300, 25]) + assert new_df["incidence"].values == pytest.approx(exp_incidence) + assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) From 435f63df84ed75629dab77acfea51359c59f1e6a Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 09:43:28 -0400 Subject: [PATCH 16/44] disable 7dav_ signals temporarily --- jhu/delphi_jhu/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index 4fa29f080..5ceddb417 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -35,7 +35,7 @@ ] SMOOTHERS = [ "unsmoothed", - "seven_day_average", + #"seven_day_average", ] SENSOR_NAME_MAP = { "new_counts": ("incidence_num", False), @@ -45,7 +45,7 @@ } SMOOTHERS_MAP = { "unsmoothed": (identity, '', False), - "seven_day_average": (seven_day_moving_average, '7dav_', True), + #"seven_day_average": (seven_day_moving_average, '7dav_', True), } GEO_RESOLUTIONS = [ "county", From d187ebc78b99ba839858c613e4141f9ec5e323b0 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 10:00:38 -0400 Subject: [PATCH 17/44] disable 7dav_ signal --- jhu/delphi_jhu/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index a21c5bb54..4d4ad4f84 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -35,7 +35,7 @@ ] SMOOTHERS = [ "unsmoothed", - "seven_day_average", + #"seven_day_average", ] SENSOR_NAME_MAP = { "new_counts": ("incidence_num", False), @@ -45,7 +45,7 @@ } SMOOTHERS_MAP = { "unsmoothed": (identity, ''), - "seven_day_average": (seven_day_moving_average, '7day_avg_'), + #"seven_day_average": (seven_day_moving_average, '7dav_'), } GEO_RESOLUTIONS = [ "county", From 131b88bf90e6381f8b955e752ea5ea1b78858ecc Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 10:01:23 -0400 Subject: [PATCH 18/44] cut 7day avg signal name --- jhu/tests/test_smooth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/tests/test_smooth.py b/jhu/tests/test_smooth.py index 1b43841bf..1f77fc76a 100644 --- a/jhu/tests/test_smooth.py +++ b/jhu/tests/test_smooth.py @@ -14,7 +14,7 @@ def test_output_files_smoothed(self, run_as_module): smoothed = pd.read_csv( join("receiving", - f"{dates[-1]}_state_confirmed_7day_avg_cumulative_num.csv") + f"{dates[-1]}_state_confirmed_7dav_cumulative_num.csv") ) raw = pd.concat([ From 003ac0cb011a06173e4ce3b366393b5e464cebd6 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 10:49:31 -0400 Subject: [PATCH 19/44] delete df_mega for msa and hrr --- jhu/delphi_jhu/geo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jhu/delphi_jhu/geo.py b/jhu/delphi_jhu/geo.py index 4d4ed9698..c471a4ae3 100644 --- a/jhu/delphi_jhu/geo.py +++ b/jhu/delphi_jhu/geo.py @@ -220,9 +220,9 @@ def geo_map(df: pd.DataFrame, geo_res: str, map_df: pd.DataFrame, sensor: str): merged["new_counts"] = merged["new_counts"] * merged["pop_prop"] merged["population"] = merged["population"] * merged["pop_prop"] df = merged.drop(["zip", "pop_prop", "hrrnum", "cbsa_id"], axis=1) - if sensor not in PROP_SENSORS: - df_mega["geo_id"] = df_mega["geo_id"].apply(fips_to_state) - df = df.append(df_mega) + # if sensor not in PROP_SENSORS: + # df_mega["geo_id"] = df_mega["geo_id"].apply(fips_to_state) + # df = df.append(df_mega) df = df.drop("fips", axis=1) df = df.groupby(["geo_id", "timestamp"]).sum().reset_index() From b911d8db39f7583e52f5b425c915dfe3fa68bfde Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 10:51:43 -0400 Subject: [PATCH 20/44] revert test cases for msa and hrr --- jhu/tests/test_geo.py | 68 +++++++++++++++++++++---------------------- 1 file changed, 34 insertions(+), 34 deletions(-) diff --git a/jhu/tests/test_geo.py b/jhu/tests/test_geo.py index 5a7274180..a96ad0d31 100644 --- a/jhu/tests/test_geo.py +++ b/jhu/tests/test_geo.py @@ -152,30 +152,30 @@ def test_hrr(self): } ) - df_mega = pd.DataFrame( - { - "fips": ["90013", "90001"], - "timestamp": ["2020-02-15", "2020-02-15"], - "new_counts": [8, 2], - "cumulative_counts": [80, 12], - "population": [np.nan, np.nan], - } - ) + # df_mega = pd.DataFrame( + # { + # "fips": ["90013", "90001"], + # "timestamp": ["2020-02-15", "2020-02-15"], + # "new_counts": [8, 2], + # "cumulative_counts": [80, 12], + # "population": [np.nan, np.nan], + # } + # ) - df = df.append(df_mega) + # df = df.append(df_mega) new_df = geo_map(df, "hrr", MAP_DF, 'new_counts') exp_incidence = np.array([13, 27]) / np.array([25, 2500]) * 100000 exp_cprop = np.array([60, 165]) / np.array([25, 2500]) * 100000 - assert (new_df["geo_id"].values == [110, 147]).all() - assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() - assert new_df["new_counts"].values == pytest.approx([13.0, 27.0]) - assert new_df["cumulative_counts"].values == pytest.approx([60, 165]) - assert new_df["population"].values == pytest.approx([25, 2500]) - assert new_df["incidence"].values == pytest.approx(exp_incidence) - assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) + assert (new_df["geo_id"].values == [110, 147]).all() + assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() + assert new_df["new_counts"].values == pytest.approx([13.0, 27.0]) + assert new_df["cumulative_counts"].values == pytest.approx([60, 165]) + assert new_df["population"].values == pytest.approx([25, 2500]) + assert new_df["incidence"].values == pytest.approx(exp_incidence) + assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) def test_msa(self): @@ -189,27 +189,27 @@ def test_msa(self): } ) - df_mega = pd.DataFrame( - { - "fips": ["90013", "90001"], - "timestamp": ["2020-02-15", "2020-02-15"], - "new_counts": [8, 2], - "cumulative_counts": [80, 12], - "population": [np.nan, np.nan], - } - ) + # df_mega = pd.DataFrame( + # { + # "fips": ["90013", "90001"], + # "timestamp": ["2020-02-15", "2020-02-15"], + # "new_counts": [8, 2], + # "cumulative_counts": [80, 12], + # "population": [np.nan, np.nan], + # } + # ) - df = df.append(df_mega) + # df = df.append(df_mega) new_df = geo_map(df, "msa", MAP_DF, 'new_counts') exp_incidence = np.array([2, 13]) / np.array([300, 25]) * 100000 exp_cprop = np.array([45, 60]) / np.array([300, 25]) * 100000 - assert (new_df["geo_id"].values == [31420, 49340]).all() - assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() - assert new_df["new_counts"].values == pytest.approx([2.0, 13.0]) - assert new_df["cumulative_counts"].values == pytest.approx([45, 60]) - assert new_df["population"].values == pytest.approx([300, 25]) - assert new_df["incidence"].values == pytest.approx(exp_incidence) - assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) + assert (new_df["geo_id"].values == [31420, 49340]).all() + assert (new_df["timestamp"].values == ["2020-02-15", "2020-02-15"]).all() + assert new_df["new_counts"].values == pytest.approx([2.0, 13.0]) + assert new_df["cumulative_counts"].values == pytest.approx([45, 60]) + assert new_df["population"].values == pytest.approx([300, 25]) + assert new_df["incidence"].values == pytest.approx(exp_incidence) + assert new_df["cumulative_prop"].values == pytest.approx(exp_cprop) From 99c3860e6d8967eea2389c1a447a9e9cd47853c7 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 10:54:32 -0400 Subject: [PATCH 21/44] resolve conflicts --- jhu/delphi_jhu/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index 4d4ad4f84..aeef3fa57 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -45,7 +45,7 @@ } SMOOTHERS_MAP = { "unsmoothed": (identity, ''), - #"seven_day_average": (seven_day_moving_average, '7dav_'), + #"seven_day_average": (seven_day_moving_average, '7dav_', True), } GEO_RESOLUTIONS = [ "county", From eabe62436ac130e0f6d3acf7767fe235fd3e1b53 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 10:55:20 -0400 Subject: [PATCH 22/44] resolve conflicts --- jhu/delphi_jhu/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index aeef3fa57..485b663ca 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -44,7 +44,7 @@ "cumulative_prop": ("cumulative_prop", False), } SMOOTHERS_MAP = { - "unsmoothed": (identity, ''), + "unsmoothed": (identity, '', False), #"seven_day_average": (seven_day_moving_average, '7dav_', True), } GEO_RESOLUTIONS = [ From b67269b1e3a8d9c96c8d135a4f8c9418c2e18477 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Thu, 11 Jun 2020 11:40:39 -0400 Subject: [PATCH 23/44] re-activate 7dav_ signal --- jhu/delphi_jhu/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index 5ceddb417..4fa29f080 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -35,7 +35,7 @@ ] SMOOTHERS = [ "unsmoothed", - #"seven_day_average", + "seven_day_average", ] SENSOR_NAME_MAP = { "new_counts": ("incidence_num", False), @@ -45,7 +45,7 @@ } SMOOTHERS_MAP = { "unsmoothed": (identity, '', False), - #"seven_day_average": (seven_day_moving_average, '7dav_', True), + "seven_day_average": (seven_day_moving_average, '7dav_', True), } GEO_RESOLUTIONS = [ "county", From 50f9e95bbda927e89b32704f987f71f9a5f5cd16 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 12 Jun 2020 09:40:43 -0400 Subject: [PATCH 24/44] change naming for wip signal --- jhu/delphi_jhu/run.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index 4fa29f080..ed0084101 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -43,6 +43,13 @@ "incidence": ("incidence_prop", False), "cumulative_prop": ("cumulative_prop", False), } +# Temporarily added for wip_ signals +WIP_SENSOR_NAME_MAP = { + "new_counts": ("incid_num", False), + "cumulative_counts": ("cumul_num", False), + "incidence": ("incid_prop", False), + "cumulative_prop": ("cumul_prop", False), +} SMOOTHERS_MAP = { "unsmoothed": (identity, '', False), "seven_day_average": (seven_day_moving_average, '7dav_', True), @@ -86,6 +93,7 @@ def run_module(): sensor_name = SENSOR_NAME_MAP[sensor][0] if (SENSOR_NAME_MAP[sensor][1] or SMOOTHERS_MAP[smoother][2]): metric = f"wip_{metric}" + sensor_name = WIP_SENSOR_NAME_MAP[sensor][0] sensor_name = SMOOTHERS_MAP[smoother][1] + sensor_name create_export_csv( df, From cc203c6ab59e4df896a9685eb6fb9da24361a63d Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 10:05:49 -0400 Subject: [PATCH 25/44] resolve conflicts --- jhu/delphi_jhu/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index 485b663ca..c845fa317 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -45,7 +45,7 @@ } SMOOTHERS_MAP = { "unsmoothed": (identity, '', False), - #"seven_day_average": (seven_day_moving_average, '7dav_', True), + "seven_day_average": (seven_day_moving_average, '7dav_', True), } GEO_RESOLUTIONS = [ "county", From 480ce6685dd521116157c395fd319d3b5da8e5e9 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 15:52:00 -0400 Subject: [PATCH 26/44] fixed errors in test_smooth --- jhu/tests/test_smooth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/tests/test_smooth.py b/jhu/tests/test_smooth.py index 1f77fc76a..43097e9ed 100644 --- a/jhu/tests/test_smooth.py +++ b/jhu/tests/test_smooth.py @@ -14,7 +14,7 @@ def test_output_files_smoothed(self, run_as_module): smoothed = pd.read_csv( join("receiving", - f"{dates[-1]}_state_confirmed_7dav_cumulative_num.csv") + f"{dates[-1]}_state_wip_confirmed_7dav_cumul_num.csv") ) raw = pd.concat([ From 72c2f73c75f613ba191dec35a343c3a039399c8e Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 16:06:00 -0400 Subject: [PATCH 27/44] fixed errors --- jhu/tests/test_geo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/tests/test_geo.py b/jhu/tests/test_geo.py index a96ad0d31..646adb24a 100644 --- a/jhu/tests/test_geo.py +++ b/jhu/tests/test_geo.py @@ -67,7 +67,7 @@ def test_incorrect_geo(self): ) with pytest.raises(ValueError): - geo_map(df, "département", MAP_DF) + geo_map(df, "département", MAP_DF, 'new_counts') def test_county(self): From 1ed824a0301639ee72a1b15ab527637b64a78d2d Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 16:07:03 -0400 Subject: [PATCH 28/44] recover smoothed signals --- jhu/delphi_jhu/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jhu/delphi_jhu/run.py b/jhu/delphi_jhu/run.py index fba3fcb28..9c9533896 100644 --- a/jhu/delphi_jhu/run.py +++ b/jhu/delphi_jhu/run.py @@ -35,7 +35,7 @@ ] SMOOTHERS = [ "unsmoothed", - #"seven_day_average", + "seven_day_average", ] SENSOR_NAME_MAP = { "new_counts": ("incidence_num", False), From 9dc64f1f926703d1811540af00b0e2f8b2b2cab6 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 16:08:42 -0400 Subject: [PATCH 29/44] add .gitignore --- jhu/tests/receiving/.gitignore | 120 +++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) diff --git a/jhu/tests/receiving/.gitignore b/jhu/tests/receiving/.gitignore index e69de29bb..552154e09 100644 --- a/jhu/tests/receiving/.gitignore +++ b/jhu/tests/receiving/.gitignore @@ -0,0 +1,120 @@ +# You should hard commit a prototype for this file, but we +# want to avoid accidental adding of API tokens and other +# private data parameters +params.json + +# Do not commit output files +receiving/*.csv + +# Remove macOS files +.DS_Store + +# virtual environment +dview/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +coverage.xml +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ From 62bc7b3f79d8c34738e9cf50ba03805774c11481 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 17:06:24 -0400 Subject: [PATCH 30/44] add gitignore --- jhu/tests/receiving/.gitignore | 120 --------------------------------- 1 file changed, 120 deletions(-) delete mode 100644 jhu/tests/receiving/.gitignore diff --git a/jhu/tests/receiving/.gitignore b/jhu/tests/receiving/.gitignore deleted file mode 100644 index 552154e09..000000000 --- a/jhu/tests/receiving/.gitignore +++ /dev/null @@ -1,120 +0,0 @@ -# You should hard commit a prototype for this file, but we -# want to avoid accidental adding of API tokens and other -# private data parameters -params.json - -# Do not commit output files -receiving/*.csv - -# Remove macOS files -.DS_Store - -# virtual environment -dview/ - -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -coverage.xml -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -.static_storage/ -.media/ -local_settings.py - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# pyenv -.python-version - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ From 64be094c55a74692c2e0f4388fee251ffd4ae0b6 Mon Sep 17 00:00:00 2001 From: Jingjing Tang Date: Fri, 19 Jun 2020 17:08:28 -0400 Subject: [PATCH 31/44] add gitignore --- jhu/tests/receiving/.gitignore | 120 +++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 jhu/tests/receiving/.gitignore diff --git a/jhu/tests/receiving/.gitignore b/jhu/tests/receiving/.gitignore new file mode 100644 index 000000000..552154e09 --- /dev/null +++ b/jhu/tests/receiving/.gitignore @@ -0,0 +1,120 @@ +# You should hard commit a prototype for this file, but we +# want to avoid accidental adding of API tokens and other +# private data parameters +params.json + +# Do not commit output files +receiving/*.csv + +# Remove macOS files +.DS_Store + +# virtual environment +dview/ + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +coverage.xml +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ From a7ff6c4f24a1d02e371c0f4acc02fa761e8e70c2 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Mon, 22 Jun 2020 12:41:29 -0400 Subject: [PATCH 32/44] Use receiving directory on runtime host --- ansible/files/jhu-params-prod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/files/jhu-params-prod.json b/ansible/files/jhu-params-prod.json index af286e644..ab51fe575 100644 --- a/ansible/files/jhu-params-prod.json +++ b/ansible/files/jhu-params-prod.json @@ -1,7 +1,7 @@ { "export_start_date": "2020-02-20", "static_file_dir": "./static", - "export_dir": "./receiving", + "export_dir": "/common/covidcast/receiving/jhu-csse", "cache_dir": "./cache", "base_url": "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_{metric}_US.csv" } From 30017dfe1c34047780591c9731ec5e6341be579f Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Mon, 22 Jun 2020 13:13:25 -0400 Subject: [PATCH 33/44] Add Ansible-specific entries to ignore --- .gitignore | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index 09a07c464..385af7747 100644 --- a/.gitignore +++ b/.gitignore @@ -118,3 +118,8 @@ venv.bak/ # mypy .mypy_cache/ + +# Ansible +.retry +.indicators-ansible-vault-pass +indicators-ansible-vault-pass From b54d3162943559428e22b86d159640c6f9057aeb Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Mon, 22 Jun 2020 13:26:25 -0400 Subject: [PATCH 34/44] Add top-level readme --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 000000000..103befcea --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# Covidcast Indicators + +Pipeline code and supporting libaries for the **Real-time COVID-19 Indicators** used in the Delphi Group's **COVIDcast** map []. + +## General information about + +## Deploying to production \ No newline at end of file From f2f137b457a28f9a39f80dbe3fe473d15b33e33f Mon Sep 17 00:00:00 2001 From: Jingjing Tang <31444565+jingjtang@users.noreply.github.com> Date: Mon, 22 Jun 2020 14:45:24 -0400 Subject: [PATCH 35/44] Update DETAILS.md --- jhu/DETAILS.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jhu/DETAILS.md b/jhu/DETAILS.md index 7850a2343..125372f38 100644 --- a/jhu/DETAILS.md +++ b/jhu/DETAILS.md @@ -57,7 +57,10 @@ New York City comprises of five boroughs: **Data from all five boroughs are reported under New York County, FIPS Code 36061.** The other four boroughs are included in the dataset -and show up in our API, but they should be uniformly zero. +and show up in our API, but they should be uniformly zero. (In our population +file under static folder, the population from all five boroughs are also +assigned to FIPS Code 36061 only. The populatio for the rest of the counties +are set to be 1.) All NYC counts are mapped to the MSA with CBSA ID 35620, which encompasses all five boroughs. All NYC counts are mapped to HRR 303, which intersects From dc2c6f7fb9333eaed38a60de5a05b90cafb1c6f1 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Mon, 22 Jun 2020 16:42:10 -0400 Subject: [PATCH 36/44] Add much text to readme --- README.md | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 78 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 103befcea..9de7b9175 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,82 @@ Pipeline code and supporting libaries for the **Real-time COVID-19 Indicators** used in the Delphi Group's **COVIDcast** map []. -## General information about +## The indicators -## Deploying to production \ No newline at end of file +Each subdirectory contained here that is named after an indicator has specific documentation. Please review as necessary! + +## General workflow for indicators creation and deployment + +**tl;dr** + +- Create your new indicator branch from `main`. +- Bulid it according to the established guidelines. +- Make some stuff! +- When your stuff works you can create your remote tracking branch. +- Consult with a platform engineer for the remaining production setup needs. +- Initiate a pull request against the corresponding `deploy-*` branch for your indicator. +- If your peers and Jenkins likes it then merge it to deploy. +- Rejoice! + +### Starting out + +The `main` branch should contain up-to-date code and supporting libraries This should be your starting point when creating a new indicator. + +```shell +# Hint +# +git checkout main +git checkout -b my-feature-branch +``` + +### Creating your indicator + +Review an existing indicator's directory to gain a sense of the pattern(s) to follow (replicate the directory structure, general code structure, linting and test guidelines, etc.) + +- Consult your peers with questions! :handshake: + +Once you have something that runs locally and passes tests you set up your remote branch eventual review and production deployment. + +```shell +# Hint +# +git push -u origin my-feature-branch +``` + +### Setting up for review and deployment + +Once you have your branch set up you should get in touch with a platform engineer to pair up on the remaining production needs. Tasks that may need to be taken care of are: + +- Create the corresponding `deploy-*` branch in the repo. +- Add the necessary Jenkins scripts for your indicator. +- Prep the runtime host with any Automation configuration necessities. +- Generally review the workflow to makes sure it meets the general guidelines and will run as expected on the runtime host. + +Once all the last mile configuration is in place you can create a pull request against the correct `deploy-*` branch to initiate the CI/CD pipeline which will build, test, and package your indicator for deployment. + +If everything looks ok, platform engineering has validated the last mile, and the pull request is accepted, merge and deployment should start. + +Hopefully it'll be a full on :tada: after that :crossed_fingers: + +If not, circle back and try again. + +## Production overview + +### Running production code + +Currently, the production indicators all live and run on the venerable and perennially useful Delphi primary server (also known generically as "the runtime host"). + +- This is a virtual machine running RHEL 7.5 and living in CMU's Campus Cloud vSphere-based infrastructure environemnt. + +### Delivering an indicator to the production environment + +We use a branch-based git workflow coupled with [Jenkins](https://www.jenkins.io/) and [Ansible](https://www.ansible.com/) to build, test, package, and deploy each indicator individually to the runtime host. + +- Jenkins dutifully manages the whole process for us by executing several "stages" in the context of a [CI/CD pipeline](https://dzone.com/articles/learn-how-to-setup-a-cicd-pipeline-from-scratch). Each stage does something unique, building on the previous stage. The stages are: + - Environment - Sets up some environment-specific needs that the other stages depend on. + - Build - Create the Python venv on the Jenkins host. + - Test - Run linting and unit tests. + - Package - Tar and gzip the built environment. + - Deploy - Trigger an Ansible playbook to place the built package onto the runtime host, place any necessary production configuration, and adjust the runtime envirnemnt (if necessary). + +There are several additional Jenkins-specific files that will need to be created for each indicator, as well as some configuration additions to the runtime host. It will be important to pair with a platform engineer to prepare the necessary production environment needs, test the workflow, validate on production, and ultimately sign off on a production release. From d98a58bfcea07d558580563b8c85718afa276f01 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 10:05:01 -0400 Subject: [PATCH 37/44] Update README.md Co-authored-by: krivard --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9de7b9175..83b7b96b2 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Covidcast Indicators -Pipeline code and supporting libaries for the **Real-time COVID-19 Indicators** used in the Delphi Group's **COVIDcast** map []. +Pipeline code and supporting libraries for the **Real-time COVID-19 Indicators** used in the Delphi Group's [**COVIDcast** map](https://covidcast.cmu.edu). ## The indicators From c8902e053a2f68332da969409fb0aca787d5b8e3 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 10:05:48 -0400 Subject: [PATCH 38/44] Update README.md Co-authored-by: krivard --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83b7b96b2..17773bb8f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Each subdirectory contained here that is named after an indicator has specific d - Create your new indicator branch from `main`. - Bulid it according to the established guidelines. - Make some stuff! -- When your stuff works you can create your remote tracking branch. +- When your stuff works, push your `dev-*` branch to remote for review. - Consult with a platform engineer for the remaining production setup needs. - Initiate a pull request against the corresponding `deploy-*` branch for your indicator. - If your peers and Jenkins likes it then merge it to deploy. From bcfefc7604a61e1f74e47704a06b727c56562689 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 10:06:06 -0400 Subject: [PATCH 39/44] Update README.md Co-authored-by: krivard --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17773bb8f..83fe4c594 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Each subdirectory contained here that is named after an indicator has specific d - When your stuff works, push your `dev-*` branch to remote for review. - Consult with a platform engineer for the remaining production setup needs. - Initiate a pull request against the corresponding `deploy-*` branch for your indicator. -- If your peers and Jenkins likes it then merge it to deploy. +- If your peers like it and Jenkins approves, deploy your changes by merging the PR. - Rejoice! ### Starting out From cf638f50c10de7a3c8a85f2bc97f137b0c682c06 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 10:06:43 -0400 Subject: [PATCH 40/44] Update README.md Co-authored-by: krivard --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83fe4c594..097afec3f 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Each subdirectory contained here that is named after an indicator has specific d **tl;dr** - Create your new indicator branch from `main`. -- Bulid it according to the established guidelines. +- Build it using the appropriate template, following the guidelines in the included README.md and REVIEW.md files. - Make some stuff! - When your stuff works, push your `dev-*` branch to remote for review. - Consult with a platform engineer for the remaining production setup needs. From 9eab4b6367c005d3915b4417790693628a845cc1 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 10:07:07 -0400 Subject: [PATCH 41/44] Update README.md Co-authored-by: krivard --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 097afec3f..894df2411 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ git checkout -b my-feature-branch ### Creating your indicator -Review an existing indicator's directory to gain a sense of the pattern(s) to follow (replicate the directory structure, general code structure, linting and test guidelines, etc.) +Create a directory for your new indicator by making a copy of `_template_r` or `_template_python` depending on the programming language you intend to use. The template copies of `README.md` and `REVIEW.md` include the minimum requirements for code structure, documentation, linting, testing, and method of configuration. Beyond that, we don't have any established restrictions on implementation; you can look at other existing indicators see some examples of code layout, organization, and general approach. - Consult your peers with questions! :handshake: From 3176d4b7a28d28feaaad090ea829514c327d843d Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 10:21:25 -0400 Subject: [PATCH 42/44] Apply suggestions from code review Co-authored-by: krivard --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 894df2411..9ed19296a 100644 --- a/README.md +++ b/README.md @@ -14,8 +14,8 @@ Each subdirectory contained here that is named after an indicator has specific d - Build it using the appropriate template, following the guidelines in the included README.md and REVIEW.md files. - Make some stuff! - When your stuff works, push your `dev-*` branch to remote for review. -- Consult with a platform engineer for the remaining production setup needs. -- Initiate a pull request against the corresponding `deploy-*` branch for your indicator. +- Consult with a platform engineer for the remaining production setup needs. They will create a branch called `deploy-*` for your indicator. +- Initiate a pull request against this new branch. - If your peers like it and Jenkins approves, deploy your changes by merging the PR. - Rejoice! @@ -27,7 +27,7 @@ The `main` branch should contain up-to-date code and supporting libraries This s # Hint # git checkout main -git checkout -b my-feature-branch +git checkout -b dev-my-feature-branch ``` ### Creating your indicator @@ -41,21 +41,21 @@ Once you have something that runs locally and passes tests you set up your remot ```shell # Hint # -git push -u origin my-feature-branch +git push -u origin dev-my-feature-branch ``` ### Setting up for review and deployment -Once you have your branch set up you should get in touch with a platform engineer to pair up on the remaining production needs. Tasks that may need to be taken care of are: +Once you have your branch set up you should get in touch with a platform engineer to pair up on the remaining production needs. These include: -- Create the corresponding `deploy-*` branch in the repo. -- Add the necessary Jenkins scripts for your indicator. -- Prep the runtime host with any Automation configuration necessities. -- Generally review the workflow to makes sure it meets the general guidelines and will run as expected on the runtime host. +- Creating the corresponding `deploy-*` branch in the repo. +- Adding the necessary Jenkins scripts for your indicator. +- Preparing the runtime host with any Automation configuration necessities. +- Reviewing the workflow to make sure it meets the general guidelines and will run as expected on the runtime host. Once all the last mile configuration is in place you can create a pull request against the correct `deploy-*` branch to initiate the CI/CD pipeline which will build, test, and package your indicator for deployment. -If everything looks ok, platform engineering has validated the last mile, and the pull request is accepted, merge and deployment should start. +If everything looks ok, platform engineering has validated the last mile, and the pull request is accepted, you can merge the PR. Deployment will start automatically. Hopefully it'll be a full on :tada: after that :crossed_fingers: From 18f1d23a7f84592bfd0eadf73e0d4dcfbd5dc9b6 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 12:43:44 -0400 Subject: [PATCH 43/44] Fix a wee bit of punctuation --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9ed19296a..2d33da170 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Each subdirectory contained here that is named after an indicator has specific d ### Starting out -The `main` branch should contain up-to-date code and supporting libraries This should be your starting point when creating a new indicator. +The `main` branch should contain up-to-date code and supporting libraries. This should be your starting point when creating a new indicator. ```shell # Hint @@ -57,7 +57,7 @@ Once all the last mile configuration is in place you can create a pull request a If everything looks ok, platform engineering has validated the last mile, and the pull request is accepted, you can merge the PR. Deployment will start automatically. -Hopefully it'll be a full on :tada: after that :crossed_fingers: +Hopefully it'll be a full on :tada:, after that :crossed_fingers: If not, circle back and try again. From e25084bee8a413049b46daf442fe049c968b15f6 Mon Sep 17 00:00:00 2001 From: Brian Clark Date: Tue, 23 Jun 2020 12:44:27 -0400 Subject: [PATCH 44/44] Switch back to local directory for csv output --- ansible/files/jhu-params-prod.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/files/jhu-params-prod.json b/ansible/files/jhu-params-prod.json index ab51fe575..af286e644 100644 --- a/ansible/files/jhu-params-prod.json +++ b/ansible/files/jhu-params-prod.json @@ -1,7 +1,7 @@ { "export_start_date": "2020-02-20", "static_file_dir": "./static", - "export_dir": "/common/covidcast/receiving/jhu-csse", + "export_dir": "./receiving", "cache_dir": "./cache", "base_url": "https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_{metric}_US.csv" }