State and country observations from the Covid Tracking Project
covidtracking.com-covid19-3.1.51
. Modified 2020-07-08T04:54:16
Resources | Packages | Documentation| Contacts| Data Dictionary
Resources
- states. Cumulative cases, deaths, hospitalizations, etc for US states
Documentation
The COVID Tracking Project collects information from 50 US states, the District of Columbia, and 5 other US territories to provide the most comprehensive testing data we can collect for the novel coronavirus, SARS-CoV-2. They attempt to include positive and negative results, pending tests, and total people tested for each state or district currently reporting that data.
Documentation Links
Contacts
- Wrangler
Data Dictionary
counties | statescounties
Column Name | Data Type | Description |
---|---|---|
state | string | |
county | string | |
covid19site | string | |
datasite | unknown | |
mainsite | string | |
unknown | ||
pui | string |
states
Column Name | Data Type | Description |
---|---|---|
date | integer | |
state | string | |
positive | integer | |
negative | integer | |
pending | integer | |
hospitalizedcurrently | integer | |
hospitalizedcumulative | integer | |
inicucurrently | integer | |
inicucumulative | integer | |
onventilatorcurrently | integer | |
onventilatorcumulative | integer | |
recovered | integer | |
hash | string | |
datechecked | datetime | |
death | integer | |
hospitalized | integer | |
total | integer | |
totaltestresults | integer | |
posneg | integer | |
fips | integer | |
deathincrease | integer | |
hospitalizedincrease | integer | |
negativeincrease | integer | |
positiveincrease | integer | |
totaltestresultsincrease | integer |
Packages
- s3 s3://library.metatab.org/covidtracking.com-covid19-3.1.51.csv
- csv http://library.metatab.org/covidtracking.com-covid19-3.1.51.csv
- source https://github.com/sandiegodata/covid19.git
Accessing Data in Vanilla Pandas
import pandas as pd
states_df = pd.read_csv('http://library.metatab.org/covidtracking.com-covid19-3.1.51/data/states.csv')
Accessing Package in Metapack
import metapack as mp
pkg = mp.open_package('http://library.metatab.org/covidtracking.com-covid19-3.1.51.csv')
# Create Dataframes
states_df = pkg.resource('states').dataframe()