You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
I expect the tested metric to have data for recent dates but noticed that California counties stopped updating. This means CovidActNow no longer shows Positive test rate at https://covidactnow.org/us/ca/county/sonoma_county
List of counties with dates:
import pandas as pd
df = pd.read_csv('https://liproduction-reportsbucket-bhk8fnhv1s76.s3-us-west-1.amazonaws.com/v1/latest/timeseries.csv')
df.loc[(df['state']=='California') & (~df['tested'].isna())].groupby('locationID').tail(1).reset_index().loc[:,['locationID','date','tested']].sort_values('date')
Count of California counties by most recent tested date shows most counties stopped updating over a week ago:
I expect the
tested
metric to have data for recent dates but noticed that California counties stopped updating. This means CovidActNow no longer showsPositive test rate
at https://covidactnow.org/us/ca/county/sonoma_countyList of counties with dates:
Count of California counties by most recent tested date shows most counties stopped updating over a week ago:
Count of Illinois counties by most recent tested date looks more like what I'd expect:
The text was updated successfully, but these errors were encountered: