Latest Covid-19 India Statewise Data
Data visualization on COVID19 data of India state-wise as on 17 jan 2023.
@kaggle.swatikhedekar_latest_covid19_india_statewise_data
Data visualization on COVID19 data of India state-wise as on 17 jan 2023.
@kaggle.swatikhedekar_latest_covid19_india_statewise_data
About
This dataset contains latest covid-19 data of India state-wise as on 17 Jan 2023.
This dataset can be used for data analysis of covid-19 in India.
This dataset is great used for Exploratory data analysis and Data visualization.
Attribute Information
State/UTs - Names of Indian States and Union Territories.
Total Cases - Total number of confirmed cases
Active - Total number of active cases
Discharged - Total number of discharged cases
Deaths - Total number of deaths
Active Ratio (%) - Ratio of number of active cases to total cases
Discharge Ratio (%) - Ratio of number of discharged cases to total cases
Death Ratio (%) - Ratio of number of deaths to total cases
Population - Population of State/UT
Source
Covid Data : https://www.mygov.in/covid-19
https://www.kaggle.com/datasets/anandhuh/latest-covid19-india-statewise-data
Please appreciate the effort with an upvote 👍
Thank You
CREATE TABLE latest_covid_19_india_status (
"state_uts" VARCHAR,
"total_cases" BIGINT,
"active" BIGINT,
"discharged" BIGINT,
"deaths" BIGINT,
"active_ratio" DOUBLE,
"discharge_ratio" DOUBLE,
"death_ratio" DOUBLE,
"population" BIGINT
);Anyone who has the link will be able to view this.