You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exercisefiles/dataengineer/README.md
+16-14Lines changed: 16 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,18 @@
1
1
# COVID19 Worldwide Testing Data
2
2
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.
5
5
6
-
## Instructions
6
+
## INSTURCTIONS
7
7
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.
9
10
10
-
## Exercise
11
+
## EXERCISE
11
12
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?**
13
14
14
-
1. Understanding the Data
15
+
### 1. Understanding the Data
15
16
16
17
1.1. Import the dataset and display the first 5 rows of the dataframe.
17
18
@@ -23,7 +24,7 @@ Our analysis tries to provide an answer to this question: **Which countries have
23
24
24
25
1.5. Display the number of unique values in each column.
25
26
26
-
2. Data Cleaning
27
+
### 2. Data Cleaning
27
28
28
29
2.1. Drop the columns that are not needed for the analysis.
29
30
@@ -35,23 +36,23 @@ Our analysis tries to provide an answer to this question: **Which countries have
35
36
36
37
2.5. Display the number of missing values in each column.
37
38
38
-
3. Extracting the Top Ten Countries with Most Covid-19 Cases.
39
+
### 3. Extracting the Top Ten Countries with Most Covid-19 Cases.
39
40
40
41
3.1. Create a new dataframe that contains the total number of positive cases for each country.
41
42
42
43
3.2. Sort the dataframe in descending order of the total number of positive cases.
43
44
44
45
3.3. Display the top ten countries with the most positive cases.
45
46
46
-
4. Identifying the Highest Positive Against Tested Cases
47
+
### 4. Identifying the Highest Positive Against Tested Cases
47
48
48
49
4.1. Create a new dataframe that contains the total number of tests conducted for each country.
49
50
50
51
4.2. Sort the dataframe in descending order of the total number of tests conducted.
51
52
52
53
4.3. Display the top ten countries with the most tests conducted.
53
54
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
55
56
56
57
5.1. Merge the two dataframes created in the previous steps.
57
58
@@ -60,15 +61,16 @@ Our analysis tries to provide an answer to this question: **Which countries have
60
61
5.3. Sort the dataframe in descending order of the ratio of positive cases to the number of tests conducted.
61
62
62
63
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
64
66
65
67
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.
66
68
67
69
6.2. Display the results in a chart that shows the top ten countries with the most positive cases vs deaths.
68
-
70
+
69
71
6.3. Display the results in a chart that shows the top ten countries with the most tests conducted.
0 commit comments