Covid 19 Dataset
Analyse Covid-19 Dataset with Python
@kaggle.rohitgrewal_covide_19_dataset
Analyse Covid-19 Dataset with Python
@kaggle.rohitgrewal_covide_19_dataset
This dataset contains global records of COVID-19 cases reported on April 29, 2020. It includes data for multiple countries and regions, showing the number of confirmed cases, deaths, and recoveries due to the coronavirus. The dataset is useful for analyzing the impact of the pandemic across different regions and can be used for visualization, comparison, or statistical modeling.
This data is available as a CSV file. We are going to analyze this data set using the Pandas DataFrame.
Q.1) Show the number of Confirmed, Deaths and Recovered cases in each Region.
Q.2) Remove all the records where the Confirmed Cases is Less Than 10.
Q.3) In which Region, maximum number of Confirmed cases were recorded ?
Q.4) In which Region, minimum number of Deaths cases were recorded ?
Q.5) How many Confirmed, Deaths & Recovered cases were reported from India till 29 April 2020 ?
Q.6-A ) Sort the entire data wrt No. of Confirmed cases in ascending order.
Q.6-B ) Sort the entire data wrt No. of Recovered cases in descending order.
Date : Represents the date when the data was recorded. In this dataset, all records are from April 29, 2020.
Region : The name of the country or territory for which COVID-19 data is recorded.
Confirmed : The total number of confirmed COVID-19 cases reported in that region as of April 29, 2020.
Deaths : The total number of deaths attributed to COVID-19 in that region as of April 29, 2020.
Recovered : The total number of individuals who recovered from COVID-19 in that region by the recorded date.
CREATE TABLE covid_19_data (
"date" TIMESTAMP,
"state" VARCHAR,
"region" VARCHAR,
"confirmed" BIGINT,
"deaths" BIGINT,
"recovered" BIGINT
);
Anyone who has the link will be able to view this.