-
Notifications
You must be signed in to change notification settings - Fork 2
/
02_choropleth.Rmd
139 lines (94 loc) · 4.39 KB
/
02_choropleth.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
---
title: "tidycensus"
author: "John Little"
date: "Jan 24, 2019"
output:
html_document:
df_print: paged
---
The [tidycensus](https://walkerke.github.io/tidycensus/index.html) package, developed by [Kyle Walker](https://walkerke.github.io/), is very **convenient and easy to use package for making choropleth maps** from United States Department of **Census data**, specifically from the Decennial and ACS Census reports. This package makes it possible to gather census variables and conveniently join those variables with "Census Geography" (i.e. aka "shapefiles", or polygons.) Visualization, or plotting, maps can be done with separate packages.
```{r}
library(tidyverse)
library(stringr)
library(tidycensus)
library(sf)
library(leaflet)
library(mapview)
```
## Census API Key
Use the tidycensus package to gather Census data and join that data with Census geography (i.e. geometry, i.e. shapefiles, i.e. polygons). First, you will need to get a [free Census API key](https://api.census.gov/data/key_signup.html). Kyle Walker's [*Basic usage of tidycensus*](https://walkerke.github.io/tidycensus/articles/basic-usage.html) documents this process.
Add the argument `install = TRUE` to install it in your RStudio environment, and it will be saved for future use.
```{r}
census_api_key("Your Key Goes Here")
```
### .Renviron File
See also Kyle's [more detailed documentation](https://walkerke.github.io/tidycensus/reference/census_api_key.html) for putting the key into your environment file. But skip that for the moment.
## TidyCensus -- Get Data
Create a Simple Features dataframe using `tidycensus::get_acs()`
The Census population variable we'll use is "B01003_001". More information about identifying Census variables is available at the [bottom of this page](#variables).
```{r}
nc_pop <-
get_acs(geography = "county",
variables = "B01003_001",
state = "NC",
geometry = TRUE)
#nc_pop
```
## Make Choropleth via mapview
Identify which variable will be used to create the color ramp shading. Assign this variable with the `zcol` argument. The `estimate` variable was extracted via the `tidycensus::get_acs()` function.
```{r make_choropleth}
mapview(nc_pop, zcol = "estimate")
```
## Add another layer
Now we'll geolocate the Starbucks stores and add those locations as a layer over our choropleth. The Starbucks locations were generated and plotted in the previous exercise. Here we regenerate the StarbuckNC object.
### Load Lat/Long Data
```{r load-data_02}
starbucks <- read_csv("data/All_Starbucks_Locations_in_the_US_-_Map.csv")
```
Subset Starbucks Data to North Carolina
```{r filter-dataset}
starbucksNC <- starbucks %>%
filter(State == "NC")
```
Convert the `starbuckNC` dataframe to a spatial (sf) object and assign the same projection as the `nc_pop` spatial object.
```{r convert2sf}
starbucksNC <- st_as_sf(starbucksNC, coords = c("Longitude", "Latitude"), crs = st_crs(nc_pop))
```
Generate the map with multiple layers. You can read more about additional arguments such as `homebutton, legend, alpha, cex` in the [`mapview()` documentation](https://r-spatial.github.io/mapview/reference/mapView.html). Read about the many more mapview functions in the [full documentation](https://r-spatial.github.io/mapview/reference/).
```{r}
mymap <- mapview(nc_pop,
zcol = "estimate",
homebutton = FALSE) +
mapview(starbucksNC,
zcol = "Name",
legend = FALSE,
alpha = 0.5, cex = 3,
col.regions = "orange",
homebutton = FALSE)
addLogo(mymap, "images/Rfun3.png",
position = "bottomright",
offset.x = 8,
offset.y = 38,
width = 100,
height = 100)
```
## Alaska & Hawaii - Shift
Shift and re-scale Alaska and Hawaii for better cartographic display of the entire US.
```{r}
akhi <- get_acs(geography = "state",
variables = "B01003_001",
geometry = TRUE,
shift_geo = TRUE)
```
```{r}
mapviewOptions(legend.pos = "bottomright")
mapviewOptions(leafletWidth = 800)
#mapviewOptions()
#mapviewOptions(default = TRUE)
mapview(akhi, zcol = "estimate", native.crs = TRUE, crs = 5070)
```
## End Notes
This session based on
- Kyle Walker's [TidyCensus](https://walkerke.github.io/tidycensus/) package
## Creative Commons
Shareable via Creative Commons: [CC By-NC](https://creativecommons.org/licenses/by-nc/4.0/)