Baselight

India's Vaccination (1 Billion Glory Doses)

dataset gives brief history of vaccination done by India

@kaggle.ramjasmaurya_indias_vaccination_100_billion_glory

India Vaccination
@kaggle.ramjasmaurya_indias_vaccination_100_billion_glory.india_vaccination

  • 141.66 KB
  • 686 rows
  • 61 columns
location

Location

date

Date

total_cases

Total Cases

new_cases

New Cases

new_cases_smoothed

New Cases Smoothed

total_deaths

Total Deaths

new_deaths

New Deaths

new_deaths_smoothed

New Deaths Smoothed

total_cases_per_million

Total Cases Per Million

new_cases_per_million

New Cases Per Million

new_cases_smoothed_per_million

New Cases Smoothed Per Million

total_deaths_per_million

Total Deaths Per Million

new_deaths_per_million

New Deaths Per Million

new_deaths_smoothed_per_million

New Deaths Smoothed Per Million

reproduction_rate

Reproduction Rate

icu_patients

Icu Patients

icu_patients_per_million

Icu Patients Per Million

hosp_patients

Hosp Patients

hosp_patients_per_million

Hosp Patients Per Million

weekly_icu_admissions

Weekly Icu Admissions

weekly_icu_admissions_per_million

Weekly Icu Admissions Per Million

weekly_hosp_admissions

Weekly Hosp Admissions

weekly_hosp_admissions_per_million

Weekly Hosp Admissions Per Million

new_tests

New Tests

total_tests

Total Tests

total_tests_per_thousand

Total Tests Per Thousand

new_tests_per_thousand

New Tests Per Thousand

new_tests_smoothed

New Tests Smoothed

new_tests_smoothed_per_thousand

New Tests Smoothed Per Thousand

positive_rate

Positive Rate

tests_per_case

Tests Per Case

tests_units

Tests Units

total_vaccinations

Total Vaccinations

people_vaccinated

People Vaccinated

people_fully_vaccinated

People Fully Vaccinated

total_boosters

Total Boosters

new_vaccinations

New Vaccinations

new_vaccinations_smoothed

New Vaccinations Smoothed

total_vaccinations_per_hundred

Total Vaccinations Per Hundred

people_vaccinated_per_hundred

People Vaccinated Per Hundred

people_fully_vaccinated_per_hundred

People Fully Vaccinated Per Hundred

total_boosters_per_hundred

Total Boosters Per Hundred

new_vaccinations_smoothed_per_million

New Vaccinations Smoothed Per Million

new_people_vaccinated_smoothed

New People Vaccinated Smoothed

new_people_vaccinated_smoothed_per_hundred

New People Vaccinated Smoothed Per Hundred

stringency_index

Stringency Index

population

Population

population_density

Population Density

median_age

Median Age

aged_65_older

Aged 65 Older

aged_70_older

Aged 70 Older

gdp_per_capita

Gdp Per Capita

extreme_poverty

Extreme Poverty

cardiovasc_death_rate

Cardiovasc Death Rate

diabetes_prevalence

Diabetes Prevalence

female_smokers

Female Smokers

male_smokers

Male Smokers

handwashing_facilities

Handwashing Facilities

hospital_beds_per_thousand

Hospital Beds Per Thousand

life_expectancy

Life Expectancy

human_development_index

Human Development Index

India30-01-2020110.0010.001nan
India31-01-202010.001nan
India01-02-202010.001nan
India02-02-2020210.0010.001nan
India03-02-2020310.0020.001nan
India04-02-202030.4290.002nan
India05-02-202030.4290.002nan
India06-02-202030.2860.002nan
India07-02-202030.2860.002nan
India08-02-202030.2860.002nan

CREATE TABLE india_vaccination (
  "location" VARCHAR,
  "date" VARCHAR,
  "total_cases" BIGINT,
  "new_cases" BIGINT,
  "new_cases_smoothed" DOUBLE,
  "total_deaths" DOUBLE,
  "new_deaths" DOUBLE,
  "new_deaths_smoothed" DOUBLE,
  "total_cases_per_million" DOUBLE,
  "new_cases_per_million" DOUBLE,
  "new_cases_smoothed_per_million" DOUBLE,
  "total_deaths_per_million" DOUBLE,
  "new_deaths_per_million" DOUBLE,
  "new_deaths_smoothed_per_million" DOUBLE,
  "reproduction_rate" DOUBLE,
  "icu_patients" VARCHAR,
  "icu_patients_per_million" VARCHAR,
  "hosp_patients" VARCHAR,
  "hosp_patients_per_million" VARCHAR,
  "weekly_icu_admissions" VARCHAR,
  "weekly_icu_admissions_per_million" VARCHAR,
  "weekly_hosp_admissions" VARCHAR,
  "weekly_hosp_admissions_per_million" VARCHAR,
  "new_tests" DOUBLE,
  "total_tests" DOUBLE,
  "total_tests_per_thousand" DOUBLE,
  "new_tests_per_thousand" DOUBLE,
  "new_tests_smoothed" DOUBLE,
  "new_tests_smoothed_per_thousand" DOUBLE,
  "positive_rate" DOUBLE,
  "tests_per_case" DOUBLE,
  "tests_units" VARCHAR,
  "total_vaccinations" DOUBLE,
  "people_vaccinated" DOUBLE,
  "people_fully_vaccinated" DOUBLE,
  "total_boosters" VARCHAR,
  "new_vaccinations" DOUBLE,
  "new_vaccinations_smoothed" DOUBLE,
  "total_vaccinations_per_hundred" DOUBLE,
  "people_vaccinated_per_hundred" DOUBLE,
  "people_fully_vaccinated_per_hundred" DOUBLE,
  "total_boosters_per_hundred" VARCHAR,
  "new_vaccinations_smoothed_per_million" DOUBLE,
  "new_people_vaccinated_smoothed" DOUBLE,
  "new_people_vaccinated_smoothed_per_hundred" DOUBLE,
  "stringency_index" DOUBLE,
  "population" DOUBLE,
  "population_density" DOUBLE,
  "median_age" DOUBLE,
  "aged_65_older" DOUBLE,
  "aged_70_older" DOUBLE,
  "gdp_per_capita" DOUBLE,
  "extreme_poverty" DOUBLE,
  "cardiovasc_death_rate" DOUBLE,
  "diabetes_prevalence" DOUBLE,
  "female_smokers" DOUBLE,
  "male_smokers" DOUBLE,
  "handwashing_facilities" DOUBLE,
  "hospital_beds_per_thousand" DOUBLE,
  "life_expectancy" DOUBLE,
  "human_development_index" DOUBLE
);

Share link

Anyone who has the link will be able to view this.