-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathslides.Rpres
More file actions
390 lines (264 loc) · 9.15 KB
/
slides.Rpres
File metadata and controls
390 lines (264 loc) · 9.15 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
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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
Analyzing Census Data in R
========================================================
author: Ari Lamstein (@AriLamstein)
date: San Francisco R-Ladies Meetup, May 2015
========================================================
Introduce yourself to your neighbor
1. What **state** are you from?
2. What **county** are you from?
3. What **ZIP code** are you from?
========================================================
Today we will use R to understand the demographics of the
1. **State** you are from
2. **County** you are from
3. **ZIP code** you are from
<br/>
Then we will
1. Analyze **historic** data
2. Look at **more** variables
The Data
========================================================
1. American Community Survey (ACS)
* Not the decennial census
2. Very detailed / personal questions
* "How long is your commute?"
* "What is your income?"
3. $400B / year is allocated based on the results
* Where should money for schools go?
4. R's **acs** package
* Connects to the Census API Directly
* Deals with confidence intervals, etc.
Part 1
========================================================
# States
========================================================
```{r}
library(choroplethr)
data(df_pop_state)
?df_pop_state
head(df_pop_state)
```
**Exercise:** What is the population of your home state? Tell your neighbor.
My Answer
======================================================
```{r}
df_pop_state[df_pop_state$region == "new york", ]
```
Boxplot
========================================================
```{r}
boxplot(df_pop_state$value)
```
**Exercise:** Draw one interpretation from this plot
Choropleth Map
========================================================
```{r, fig.width=25, fig.height=12.5}
state_choropleth(df_pop_state)
```
**Exercise:** Draw one interpretation from this map
Exploratory Data Analysis
========================================================
```{r, fig.width=25, fig.height=12.5}
state_choropleth(df_pop_state, num_colors = 2)
```
**Exercise:** Draw one interpretation from this map
Continuous Scale
========================================================
```{r, fig.width=25, fig.height=12.5}
state_choropleth(df_pop_state, num_colors = 1)
```
**Exercise:** Draw one interpretation from this map
More than population
========================================================
```{r}
data(df_state_demographics)
?df_state_demographics
colnames(df_state_demographics)
```
**Exercise:** Make a choropleth map of one statistic above. Share it with your neighbor.
My answer
========================================================
```{r, fig.width=25, fig.height=12.5}
df_state_demographics$value = df_state_demographics$percent_white
state_choropleth(df_state_demographics, num_colors=2)
```
Part 2
========================================================
# Counties
County Population
========================================================
```{r}
library(choroplethr)
data(df_pop_county)
head(df_pop_county)
```
* (region, value) pairs again
* County FIPS code
County FIPS codes
========================================================
**Exercise:** Use google to find the FIPS code of the county you are from. Share it with your neighbor.
**Exercise:** What is the population of the county you are from? Share it with your neighbor.
<br/><br/>
*Write down your county FIPS code. We'll be using it later.*
My Answer
========================================================
```{r}
# 36059 is the FIPS code for Nassau County, NY
df_pop_county[df_pop_county$region == 36059, ]
```
Boxplot
========================================================
```{r}
boxplot(df_pop_county$value)
```
**Exercise:** Draw one interpretation from this boxplot
Choropleth Map
========================================================
```{r, fig.width=25, fig.height=12.5}
county_choropleth(df_pop_county)
```
**Exercise:** Draw one interpretation from this map
========================================================
```{r, fig.width=25, fig.height=12.5}
county_choropleth(df_pop_county, num_colors=1)
```
**Exercise:** Draw one interpretation from this map
Zoom
========================================================
```{r, fig.width=25, fig.height=12.5}
county_choropleth(df_pop_county, state_zoom="california", num_colors=4)
```
**Exercise:** Draw one interpretation from this map
More Demographics
========================================================
```{r}
data(df_county_demographics)
colnames(df_county_demographics)
```
**Exercise:** Make a map of some demographic of the counties of your home state. Share it with your neighbor.
My Answer
========================================================
```{r, fig.width=25, fig.height=12.5}
df_county_demographics$value = df_county_demographics$percent_asian
county_choropleth(df_county_demographics, num_colors=1, state_zoom="new york")
```
Part 3
========================================================
# ZIP Codes
ZIP Code vs. ZCTA
========================================================
Post Office maintains **ZIP Codes**<br/>
Census maintains **Zip Code Tabulated Areas (ZCTA)**
ZIP Codes are difficult to analyze:
* Aren't polygonal
* Change freqently
* Span counties and states
ZIP Code Population
========================================================
```{r}
library(choroplethrZip)
data(df_pop_zip)
head(df_pop_zip)
```
**Exercise:** What is the population of the zip you are from? Tell your neighbor.
My Answer
========================================================
```{r}
df_pop_zip[df_pop_zip$region == "11021", ]
```
Boxplot
========================================================
```{r}
boxplot(df_pop_zip$value)
```
**Exercise:** Draw one interpretation from this boxplot
Mapping ZCTAs in a State
========================================================
```{r, fig.width=25, fig.height=12.5}
zip_choropleth(df_pop_zip, state_zoom="new york")
```
**Exercise:** Draw one inference from this map
Mapping ZCTAs in a County
========================================================
```{r, fig.width=25, fig.height=12.5}
# 36059 is the FIPS code for Nassau County, NY
zip_choropleth(df_pop_zip, county_zoom=36059)
```
**Exercise:** Draw one inference from this map
Exercises
========================================================
1. Create a choropleth map showing the population of the zip codes in your home state. Share it with your neighbor.
2. Create a choropleth map showing the population of the zip codes in your home county. Share it with your neighbor.
More ZIP Demographics
========================================================
```{r}
data(df_zip_demographics)
colnames(df_zip_demographics)
```
**Exercise:** Make a map of some demographic of the ZIPs in your home state. Share it with your neighbor.
My Answer
========================================================
```{r, fig.width=25, fig.height=12.5}
df_zip_demographics$value = df_zip_demographics$per_capita
zip_choropleth(df_zip_demographics, state_zoom="new york")
```
**Exercise:** Draw one inference from this map
Exercise
========================================================
**Exercise:** Make a map of some demographic of the ZIPs in your home county. Share it with your neighbor.
My Answer
========================================================
```{r, fig.width=25, fig.height=12.5}
df_zip_demographics$value = df_zip_demographics$per_capita
zip_choropleth(df_zip_demographics, county_zoom=36059, num_colors=1)
```
**Exercise:** Draw one inference from this map
Part 4
========================================================
# Historic Data
Technical Details - R
========================================================
* Get a Census API Key: http://api.census.gov/data/key_signup.html
* Then type:
```{r}
library(acs)
# api.key.install("<key>")
```
Technical Details - Census Bureau
========================================================
* Google "CRAN choroplethr" -> click "Mapping US Census Data"

New York in 2010
========================================================
* `?get_state_demographics`
```{r}
library(choroplethr)
df_2010 = get_state_demographics(2010, 5)
df_2010[df_2010$region == "new york",
"total_population"]
```
**Exercise**: What was the population of your home state according to the 2010 5-year ACS?
Part 5
========================================================
# More Data
What's Available?
========================================================
* Google "CRAN choroplethr" -> "Mapping US Census Data"

Example: Public Assistance Income
========================================================
* Search for "B19067": AGGREGATE PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS (IN 2012 INFLATION-ADJUSTED DOLLARS) FOR HOUSEHOLDS
```{r}
# 6075 is the county FIPS code for San Francisco
zip_choropleth_acs("B19067", county_zoom=6075, num_colors=3)
```
Wrapping Up
========================================================
1. Please provide feedback!
* http://goo.gl/forms/e5DdRqB6rt
2. Need a software engineer or data analyst?
* Want to continue with open source
3. Keep in touch!
* Twitter: @AriLamstein
* Blog: justanrblog.wordpress.com
* Email: arilamstein@gmail.com