Covid Confirmed Cases Since 100th Case
Corona virus Cases Since 100th Case
@kaggle.gamestat_covid_confirmed_cases_since_100th_case
Corona virus Cases Since 100th Case
@kaggle.gamestat_covid_confirmed_cases_since_100th_case
This data set represent number of corona virus cases across the world since 100th case was reported against days.
data is arranged in 5 columns each representing different variable Entity for geographical location,code for country abbreviation,date when test was done and case confirmed,cases and finally number of cases after 100th case was reported.
this data couldn't be possible without our world in data org where its was obtained from ( https://ourworldindata.org/grapher/covid-19-total-confirmed-cases-vs-total-tests-conducted )
Aim of uploading and using this data is to compare how China confirmed cases of corona virus correlate with other countries since 100th case against number of days while determining if there was a cover-up by China on how infectious the virus is?
CREATE TABLE covid_confirmed_cases_since_100th_case (
"entity" VARCHAR,
"code" VARCHAR,
"date" TIMESTAMP,
"n__cases" DOUBLE -- (cases),
"days_since_the_100th_confirmed_case_days" DOUBLE -- Days Since The 100th Confirmed Case (days)
);
Anyone who has the link will be able to view this.