-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.Rmd
More file actions
78 lines (47 loc) · 1.56 KB
/
about.Rmd
File metadata and controls
78 lines (47 loc) · 1.56 KB
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
---
title: "About this blog"
description: |
Covid-19 : the menace to the global community in an era when homosapiense is boasting its technological superiority. I also joined the league of those researchers who are on a mission to find some insight that might help the global community to face the menace the better way scientifically.
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE)
```
```{css, echo = FALSE}
.fill {
color: red;
font-weight: bold;
}
h2 {
color: #006DAE;
}
```

## Covid-19 Data Collection
Live and historical data available in public domain on Covid-19 of the United Kingdom and Egypt are explored.
### Data description
```{css, echo = FALSE}
.fill {
color: #4a88ed;
font-weight: bold;
}
.fill1 {
color: #002259;
font-weight: normal;
}
h2 {
color: #006DAE;
}
```
Dataset is collected from Joachim Gassen's [[**Github-repository**]{.fill}](https://github.com/joachim-gassen/tidycovid19)
The data is updated on a daily basis.
To know about covid-19 click [[here]{.fill1}](https://www.unicef.org/stories/novel-coronavirus-outbreak-frequently-asked-questions)
```{r echo = FALSE, warning = FALSE,message=FALSE}
library(tidyverse)
library(tidycovid19)
library(zoo)
library(plotly)
library(kableExtra)
df <- tidycovid19_variable_definitions %>%
select(var_name, var_def)
kable(df) %>% kableExtra::kable_styling()
```