Skip to content

Commit 7cbc700

Browse files
committed
Adding datascientist exercise
1 parent d237ed0 commit 7cbc700

1 file changed

Lines changed: 16 additions & 14 deletions

File tree

exercisefiles/dataengineer/README.md

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
# COVID19 Worldwide Testing Data
22

3-
## Introduction
4-
This dataset tested_worldwide.csv is origin from Kaggle. This dataset, which has the number of tests conducted over time, is important to help making sense of daily reported cases and understanding how COVID-19 is truly spreading in each country.
3+
## INTRODUCTION
4+
This dataset tested_worldwide.csv is origin from Kaggle. This dataset, which has the number of tests conducted over time, is important to help making sense of daily reported cases and understanding how COVID-19 is truly spreading in each country.
55

6-
## Instructions
6+
## INSTURCTIONS
77

8-
1. Use Copilot Chat to create a new notebook in your project. Use command /newnotebook and name it as "COVID19 Worldwide Testing Data".
8+
1. Use Copilot Chat to create a new notebook in your project. Use command /newnotebook and name it as "COVID19 Worldwide Testing Data".
9+
2. Use Copilot and Copilot Chat to develop the exercise and support your learning.
910

10-
## Exercise
11+
## EXERCISE
1112

12-
Our analysis tries to provide an answer to this question: **Which countries have reported the highest number of positive cases in relation to the number of tests conducted?**
13+
Our analysis tries to provide an answer to this question: **Which countries have reported the highest number of positive cases in relation to the number of tests conducted?**
1314

14-
1. Understanding the Data
15+
### 1. Understanding the Data
1516

1617
1.1. Import the dataset and display the first 5 rows of the dataframe.
1718

@@ -23,7 +24,7 @@ Our analysis tries to provide an answer to this question: **Which countries have
2324

2425
1.5. Display the number of unique values in each column.
2526

26-
2. Data Cleaning
27+
### 2. Data Cleaning
2728
2829
2.1. Drop the columns that are not needed for the analysis.
2930

@@ -35,23 +36,23 @@ Our analysis tries to provide an answer to this question: **Which countries have
3536

3637
2.5. Display the number of missing values in each column.
3738

38-
3. Extracting the Top Ten Countries with Most Covid-19 Cases.
39+
### 3. Extracting the Top Ten Countries with Most Covid-19 Cases.
3940

4041
3.1. Create a new dataframe that contains the total number of positive cases for each country.
4142

4243
3.2. Sort the dataframe in descending order of the total number of positive cases.
4344

4445
3.3. Display the top ten countries with the most positive cases.
4546

46-
4. Identifying the Highest Positive Against Tested Cases
47+
### 4. Identifying the Highest Positive Against Tested Cases
4748
4849
4.1. Create a new dataframe that contains the total number of tests conducted for each country.
4950

5051
4.2. Sort the dataframe in descending order of the total number of tests conducted.
5152

5253
4.3. Display the top ten countries with the most tests conducted.
5354

54-
5. Identifying top three countries that have had the highest number of positive cases against the number of tests carried out
55+
### 5. Identifying top three countries that have had the highest number of positive cases against the number of tests carried out
5556
5657
5.1. Merge the two dataframes created in the previous steps.
5758

@@ -60,15 +61,16 @@ Our analysis tries to provide an answer to this question: **Which countries have
6061
5.3. Sort the dataframe in descending order of the ratio of positive cases to the number of tests conducted.
6162

6263
5.4. Display the top three countries with the highest ratio of positive cases to the number of tests conducted.
63-
6. Displaying the Results
64+
65+
### 6. Displaying the Results
6466

6567
6.1. Display the results a chart that shows the top three countries with the highest ratio of positive cases to the number of tests conducted.
6668

6769
6.2. Display the results in a chart that shows the top ten countries with the most positive cases vs deaths.
68-
70+
6971
6.3. Display the results in a chart that shows the top ten countries with the most tests conducted.
7072

71-
7. Conclusion
73+
### 7. Conclusion
7274

7375
6.1. What are your conclusions?
7476

0 commit comments

Comments
 (0)