Covid-19 Status In Bangladesh
Covid-19 Status in Bangladesh up to date September 30, 2021
@kaggle.raselmeya_covid19_status_in_bangladesh
Covid-19 Status in Bangladesh up to date September 30, 2021
@kaggle.raselmeya_covid19_status_in_bangladesh
This dataset contains the latest Covid-19 Status in Bangladesh up to date September 30, 2021. This dataset can be used to analyze covid in Bangladesh.
This dataset is great for Exploratory Data Analysis
Date- Date
Total tested - Total number of teste since the first day
Total Cases - Total number of confirmed cases since the first day
Total deaths- Total number of death since the first day
Total recovered - Total number of recovered since the first day
Newly tested -Total number of tests per day
New cases -Total number of confirmed cases per day
New deaths -Total number of deaths per day
Newly recovered - Total number of recovered per day
Days since first confirmed cases -Total days from first confirmed cases to present day.
Source
Link :
https://covid19.who.int/region/searo/country/bd
https://en.wikipedia.org
*time-series data
If you find this dataset useful, please consider upvoting ❤️
CREATE TABLE all_status_of_covid_19_in_bd (
"date" TIMESTAMP,
"total_tested" BIGINT,
"total_cases" BIGINT,
"total_deaths" BIGINT,
"total_recovered" BIGINT,
"newly_tested" BIGINT,
"new_cases" BIGINT,
"new_deaths" BIGINT,
"newly_recovered" BIGINT,
"days_since_first_confirmed_cases" BIGINT
);CREATE TABLE covid19_total_cases_per_district_in_bd (
"date" TIMESTAMP,
"total_tested" BIGINT,
"total_cases" BIGINT,
"total_deaths" BIGINT,
"total_recovered" BIGINT,
"newly_tested" BIGINT,
"new_cases" BIGINT,
"new_deaths" BIGINT,
"newly_recovered" BIGINT,
"days_since_first_confirmed_cases" BIGINT
);Anyone who has the link will be able to view this.