-
Notifications
You must be signed in to change notification settings - Fork 1
/
cz_plot.Rmd
54 lines (39 loc) · 1.22 KB
/
cz_plot.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
---
title: "CZ Plots"
date: "`r format(Sys.Date(), '%A %b %d, %Y')`"
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, fig.width=8, fig.height=4, message=FALSE, warning=FALSE)
```
```{r, message=FALSE, warning=FALSE, echo=FALSE}
library(CoV19)
```
## Czechia
```{r cz_plot, message=FALSE, warning=FALSE, echo=FALSE}
my_plot(world, c("Czechia"))
```
```{r cz_plot2, message=FALSE, warning=FALSE, echo=FALSE}
plot4(world, c("Czechia"))
```
## Poland
```{r pl_plot, message=FALSE, warning=FALSE, echo=FALSE}
my_plot(world, c("Poland"))
```
```{r pl_plot2, message=FALSE, warning=FALSE, echo=FALSE}
plot4(world, c("Poland"))
```
## Austria
Note, Austria borders Northern Italy (where the outbreak started). There is a lot of tourist traffic from Austria to Northern Italy, so it's expected that their numbers are much higher than Czechia and Poland.
```{r au_plot, message=FALSE, warning=FALSE, echo=FALSE}
my_plot(world, c("Austria"))
```
```{r au_plot2, message=FALSE, warning=FALSE, echo=FALSE}
plot4(world, c("Austria"))
```
## Germany
```{r ge_plot, message=FALSE, warning=FALSE, echo=FALSE}
my_plot(world, c("Germany"))
```
```{r ge_plot2, message=FALSE, warning=FALSE, echo=FALSE}
plot4(world, c("Germany"))
```