COVID-19 WEEKLY TRENDS IN EUROPE
Weekly trends of COVID-19 in different regions of Europe as on March 28,2022.
@kaggle.aryakrishnanar_covid19_weekly_trends_in_europe
Weekly trends of COVID-19 in different regions of Europe as on March 28,2022.
@kaggle.aryakrishnanar_covid19_weekly_trends_in_europe
Coronavirus disease (COVID-19) is an infectious disease caused by a newly discovered coronavirus. The disease has since spread worldwide, leading to an ongoing pandemic.
This Dataset contains Weekly trends of COVID-19 in different regions of Europe as on March 28, 2022.
Country/Other - Country/Other regions in Europe
Cases in the last 7 days - No. of cases in the last 7 days
Cases in the preceding 7 days- No. of cases in the preceding 7 days
Weekly Case % Change - Weekly change of cases in percentage
Cases in the last 7 days/1M pop - Cases in the last 7 days per 1 million population
Deaths in the last 7 days - no of deaths in last 7 days
Deaths in the preceding 7 days - no of deaths in preceding 7 days
Weekly Death % Change - weekly change of deaths in percentage
Deaths in the last 7 days/1M pop - Deaths in the last 7 days per 1 million population
Population - Population of the region
https://www.worldometers.info/coronavirus/weekly-trends/#weekly_table
CREATE TABLE covid_19_weekly_trends_in_europe (
"country_other" VARCHAR -- Country, Other,
"cases_in_the_last_7_days" BIGINT,
"cases_in_the_preceding_7_days" BIGINT,
"weekly_case_change" DOUBLE -- Weekly Case % Change,
"cases_in_the_last_7_days_1m_pop" BIGINT,
"deaths_in_the_last_7_days" BIGINT,
"deaths_in_the_preceding_7_days" BIGINT,
"weekly_death_change" DOUBLE -- Weekly Death % Change,
"deaths_in_the_last_7_days_1m_pop" BIGINT,
"population" BIGINT
);
CREATE TABLE covid_19_weekly_trends_in_europe_2 (
"country_other" VARCHAR,
"cases_in_the_last_7_days" BIGINT,
"cases_in_the_preceding_7_days" BIGINT,
"weekly_case_change" DOUBLE -- Weekly Case % Change,
"cases_in_the_last_7_days_1m_pop" BIGINT,
"deaths_in_the_last_7_days" BIGINT,
"deaths_in_the_preceding_7_days" BIGINT,
"weekly_death_change" DOUBLE -- Weekly Death % Change,
"deaths_in_the_last_7_days_1m_pop" DOUBLE,
"population" BIGINT
);
Anyone who has the link will be able to view this.