-
Notifications
You must be signed in to change notification settings - Fork 1
/
state_plots.Rmd
79 lines (56 loc) · 1.39 KB
/
state_plots.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
---
title: "State Plots"
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = FALSE, fig.width=8, fig.height=8, message=FALSE, warning=FALSE)
```
```{r, message=FALSE, warning=FALSE}
library(CoV19)
```
# South
```{r, message=FALSE, warning=FALSE}
#plot2(states, c("FL","LA","GA","MS"))
plot4(states, c("FL","LA","GA","MS"))
```
```{r, message=FALSE, warning=FALSE}
plot4(states, c("SC","NC","VA","WV"))
```
# Northeast
```{r, message=FALSE, warning=FALSE, fig.height=3}
plot4(states, c("NY"))
```
```{r, message=FALSE, warning=FALSE}
plot4(states, c("MA","NJ","PA","CT"))
```
```{r, message=FALSE, warning=FALSE, fig.height=6}
plot4(states, c("MD","DC", "RI"))
```
```{r, message=FALSE, warning=FALSE, fig.height=6}
plot4(states, c("VT","ME","NH"))
```
# Midwest
```{r, message=FALSE, warning=FALSE}
plot4(states, c("OH","IN","IL","MI"))
```
```{r, message=FALSE, warning=FALSE}
plot4(states, c("WI","MN","IA","MO"))
```
```{r, message=FALSE, warning=FALSE}
plot4(states, c("ND","SD","NE","KS"))
```
# North Rockies
```{r, message=FALSE, warning=FALSE, fig.width=8, fig.height=6}
plot4(states, c("ID","WY","MT"))
```
# Four Corners
```{r, message=FALSE, warning=FALSE}
plot4(states, c("AZ","UT","CO","NM"))
```
# Texas and company
```{r, message=FALSE, warning=FALSE}
plot4(states, c("TX","OK","AR","LA"))
```
# West
```{r, message=FALSE, warning=FALSE}
plot4(states, c("CA","OR","WA","NV"))
```