United States Covid19 State Wise Data
Complete data of United States COVID19 Cases and Deaths by state over time.
@kaggle.arathipraj_united_states_covid19_state_wise_data
Complete data of United States COVID19 Cases and Deaths by state over time.
@kaggle.arathipraj_united_states_covid19_state_wise_data
This dataset contains COVID19 Cases in United States over time. The data contains factors such as submission date, state, total number of cases, total number of confirmed cases etc.This data is used for analysing number of confirmed cases and number of probable cases etc. This is very helpful for Exploratory Data Analysis and good visualizations.
CREATE TABLE united_states_covid_19_cases_and_deaths_by_state_over_time (
"submission_date" TIMESTAMP,
"state" VARCHAR,
"tot_cases" BIGINT,
"conf_cases" DOUBLE,
"prob_cases" DOUBLE,
"new_case" BIGINT,
"pnew_case" DOUBLE,
"tot_death" BIGINT,
"conf_death" DOUBLE,
"prob_death" DOUBLE,
"new_death" BIGINT,
"pnew_death" DOUBLE,
"created_at" VARCHAR,
"consent_cases" VARCHAR,
"consent_deaths" VARCHAR
);
Anyone who has the link will be able to view this.