-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Mission505Solutions.Rmd
192 lines (139 loc) · 5.48 KB
/
Mission505Solutions.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
---
title: 'Data Structures in R: Guided Project Solutions'
author: "Dataquest"
date: "6/6/2020"
output: html_document
---
# Understanding the Data
## Loading the dataset from the `covid19.csv` CSV file and quick exploration
```{r}
library(readr)
# Loading the dataset
covid_df <- read_csv("covid19.csv")
```
```{r}
# Displaing the dimension of the data:
dim(covid_df)
# Storing the column names in a variable
vector_cols <- colnames(covid_df)
# Displaing the variable vector_cols
vector_cols
# Showing the first few rows of the dataset
head(covid_df)
# Showing a global view of the dataset.
library(tibble)
glimpse(covid_df)
```
The dataset contains `14` columns and `10,903` rows. This database provides information on the numbers (per day and cumulatively) of COVID-19 positive cases, deaths, tests performed and hospitalizations for each country through the column's names store in the variable `vector_cols`.
1. This variable contains a character vector.
2. The use of the function `glimpse()` is the very first operation to do because we don't only learn about the dimensions of the database but also about the names of the first columns and their types and content. It can replace the three previous operations: `dim()`, `colnames()`, and `head()`.
# Isolating the Rows We Need
- Selecting only the rows related to `"All States"` and removing the `Province_State`.
```{r}
library(dplyr)
# Filter the "All States" Province states and remove the `Province_State` column
covid_df_all_states <- covid_df %>%
filter(Province_State == "All States") %>%
select(-Province_State)
```
- We can remove `Province_State` without loosing information because after the filtering step this column only contains the value `"All States"`.
# Isolating the Columns We Need
- Creating a dataset for the daily columns from `covid_df_all_states` dataframe
Let's recall the description of the dataset's columns.
1. `Date`: Date
2. `Continent_Name`: Continent names
3. `Two_Letter_Country_Code`: Country codes
4. `Country_Region`: Country names
5. `Province_State`: States/province names; value is `All States` when state/provincial level data is not available
6. `positive`: Cumulative number of positive cases reported.
7. `active`: Number of actively cases on that **day**.
8. `hospitalized`: Cumulative number of hospitalized cases reported.
9. `hospitalizedCurr`: Number of actively hospitalized cases on that **day**.
10. `recovered`: Cumulative number of recovered cases reported.
11. `death`: Cumulative number of deaths reported.
12. `total_tested`: Cumulative number of tests conducted.
13. `daily_tested`: Number of tests conducted on the **day**; if daily data is unavailable, daily tested is averaged across number of days in between.
14. `daily_positive`: Number of positive cases reported on the **day**; if daily data is unavailable, daily positive is averaged across number of days in.
```{r}
# Selecting the columns with cumulative numbers
covid_df_all_states_daily <- covid_df_all_states %>%
select(Date, Country_Region, active, hospitalizedCurr, daily_tested, daily_positive)
head(covid_df_all_states_daily)
```
# Extracting the Top Ten countries in the number of tested cases
## Summarizing the data based on the `Country_Region` column.
```{r}
covid_df_all_states_daily_sum <- covid_df_all_states_daily %>%
group_by(Country_Region) %>%
summarise(tested = sum(daily_tested),
positive = sum(daily_positive),
active = sum(active),
hospitalized = sum(hospitalizedCurr)) %>%
arrange(desc(tested)) #this is equivalent to `arrange(-tested)`
covid_df_all_states_daily_sum
#Date, Country_Region, active, hospitalizedCurr, daily_tested, daily_positive
```
## Taking the top 10
```{r}
covid_top_10 <- head(covid_df_all_states_daily_sum, 10)
covid_top_10
```
# Identifying the Highest Positive Against Tested Cases
## Getting vectors
```{r}
countries <- covid_top_10$Country_Region
tested_cases <- covid_top_10$tested
positive_cases <- covid_top_10$positive
active_cases <- covid_top_10$active
hospitalized_cases <- covid_top_10$hospitalized
```
## Naming vectors
```{r}
names(positive_cases) <- countries
names(tested_cases) <- countries
names(active_cases) <- countries
names(hospitalized_cases) <- countries
```
## Identifying
```{r}
positive_cases
sum(positive_cases)
mean(positive_cases)
positive_cases/sum(positive_cases)
```
```{r}
positive_cases/tested_cases
```
## Conclusion
```{r}
positive_tested_top_3 <- c("United Kingdom" = 0.11, "United States" = 0.10, "Turkey" = 0.08)
```
# Keeping relevant information
```{r}
# Creating vectors
united_kingdom <- c(0.11, 1473672, 166909, 0, 0)
united_states <- c(0.10, 17282363, 1877179, 0, 0)
turkey <- c(0.08, 2031192, 163941, 2980960, 0)
# Creating the matrix covid_mat
covid_mat <- rbind(united_kingdom, united_states, turkey)
# Naming columns
colnames(covid_mat) <- c("Ratio", "tested", "positive", "active", "hospitalized")
#d Displaying the matrix
covid_mat
```
# Putting all together
```{r}
question <- "Which countries have had the highest number of positive cases against the number of tests?"
answer <- c("Positive tested cases" = positive_tested_top_3)
datasets <- list(
original = covid_df,
allstates = covid_df_all_states,
daily = covid_df_all_states_daily,
top_10 = covid_top_10
)
matrices <- list(covid_mat)
vectors <- list(vector_cols, countries)
data_structure_list <- list("dataframe" = datasets, "matrix" = matrices, "vector" = vectors)
covid_analysis_list <- list(question, answer, data_structure_list)
covid_analysis_list[[2]]
```