Baselight

Covid-19 Cases & Deaths

Covid-19 total cases, deaths data by Country

@kaggle.totoro29_covid19_cases_deaths

Covid 19 Countrywise
@kaggle.totoro29_covid19_cases_deaths.covid_19_countrywise

  • 23.04 KB
  • 237 rows
  • 12 columns
country

Country

region

Region

total_cases

Total Cases

total_cases_per_100k_pop

Total Cases Per 100k Pop

new_cases_7_days

New Cases (7 Days)

new_cases_per_100k_pop_7_days

New Cases Per 100k Pop (7 Days)

new_cases_24_hours

New Cases (24 Hours)

total_deaths

Total Deaths

total_deaths_per_100k_pop

Total Deaths Per 100k Pop

new_deaths_7_days

New Deaths (7 Days)

new_deaths_per_100k_pop_7_days

New Deaths Per 100k Pop (7 Days)

new_deaths_24_hours

New Deaths (24 Hours)

United States of AmericaAmericas9415257328444.658416281125.764764621040506314.3525900.782624
IndiaSouth-East Asia445164793225.822378432.742642252825038.2791600.01234
BrazilAmericas3454437716251.6335344625.14410420685002322.2644220.199104
FranceEurope3376609051916.394150781231.8336147151062232.2622170.33438
GermanyEurope3260499339204.38203649244.86832168148728178.831500.068
Republic of KoreaWestern Pacific2426447047327.591399931780.061714712766553.963520.68772
The United KingdomEurope2355497134697.83120933.083189026278.446
ItalyEurope2209645037048.791109155183.01918849176404295.7743950.66269
JapanWestern Pacific2039993316129.431638200504.6995464317734.13813371.057192
Russian FederationEurope2026500413886.373356815244.50456126385727264.3156580.45199

CREATE TABLE covid_19_countrywise (
  "country" VARCHAR,
  "region" VARCHAR,
  "total_cases" BIGINT,
  "total_cases_per_100k_pop" DOUBLE,
  "new_cases_7_days" BIGINT,
  "new_cases_per_100k_pop_7_days" DOUBLE,
  "new_cases_24_hours" BIGINT,
  "total_deaths" BIGINT,
  "total_deaths_per_100k_pop" DOUBLE,
  "new_deaths_7_days" BIGINT,
  "new_deaths_per_100k_pop_7_days" DOUBLE,
  "new_deaths_24_hours" BIGINT
);

Share link

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