USA COVID-19 Vaccinations
State-by-state data on COVID-19 vaccinations in the United States
@kaggle.paultimothymooney_usa_covid19_vaccinations
State-by-state data on COVID-19 vaccinations in the United States
@kaggle.paultimothymooney_usa_covid19_vaccinations
There is a vaccine for COVID-19 that is available in the USA
State-by-state data on COVID-19 vaccinations in the United States
Columns:
[date,location,total_distributed,total_vaccinations,distributed_per_hundred,total_vaccinations_per_hundred,people_vaccinated,people_vaccinated_per_hundred,people_fully_vaccinated,people_fully_vaccinated_per_hundred,daily_vaccinations_raw,daily_vaccinations,daily_vaccinations_per_million,share_doses_used]
Data from https://ourworldindata.org/us-states-vaccinations and https://covid.ourworldindata.org/data/vaccinations/us_state_vaccinations.csv
shared under CC 4.0 license
CREATE TABLE us_state_vaccinations (
"date" TIMESTAMP,
"location" VARCHAR,
"total_vaccinations" DOUBLE,
"total_distributed" DOUBLE,
"people_vaccinated" DOUBLE,
"people_fully_vaccinated_per_hundred" DOUBLE,
"total_vaccinations_per_hundred" DOUBLE,
"people_fully_vaccinated" DOUBLE,
"people_vaccinated_per_hundred" DOUBLE,
"distributed_per_hundred" DOUBLE,
"daily_vaccinations_raw" DOUBLE,
"daily_vaccinations" DOUBLE,
"daily_vaccinations_per_million" DOUBLE,
"share_doses_used" DOUBLE,
"total_boosters" DOUBLE,
"total_boosters_per_hundred" DOUBLE
);
Anyone who has the link will be able to view this.