-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.Rhistory (Chriss-MacBook-Pro.local's conflicted copy 2020-03-13)
512 lines (512 loc) · 17.9 KB
/
.Rhistory (Chriss-MacBook-Pro.local's conflicted copy 2020-03-13)
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
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
select(-key) %>%
select(iso3, country, age_range, sex, nutrient, units_long, units_short, stat, value, everything())
# Format data
data <- data_orig %>%
# Rearrange columns
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
arrange(iso3, age_range) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Add nutrient and stat
left_join(header_info, by=c("key"="col_name")) %>%
# Format units
rename(units_long=units) %>%
mutate(units_short=gsub("/person/day", "", units_long)) %>%
# Arrange columns
select(-key) %>%
select(iso3, country, age_range, sex, nutrient, units_long, units_short, stat, value, everything()) %>%
# Spread stats
spread(key="stat", value="value")
View(data)
# Format data
data <- data_orig %>%
# Rearrange columns
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
arrange(iso3, age_range) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Add nutrient and stat
left_join(header_info, by=c("key"="col_name")) %>%
# Format units
rename(units_long=units) %>%
mutate(units_short=gsub("/person/day", "", units_long)) %>%
# Arrange columns
select(-key) %>%
select(iso3, country, age_range, sex, nutrient, units_long, units_short, stat, value, everything()) %>%
# Spread stats
spread(key="stat", value="value") %>%
rename(value_med=md, value_lo=lo, value_hi=hi)
# Format data
data <- data_orig %>%
# Rearrange columns
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
arrange(iso3, age_range) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Add nutrient and stat
left_join(header_info, by=c("key"="col_name")) %>%
# Format units
rename(units_long=units) %>%
mutate(units_short=gsub("/person/day", "", units_long)) %>%
# Arrange columns
select(-key) %>%
select(iso3, country, age_range, sex, nutrient, units_long, units_short, stat, value, everything()) %>%
# Spread stats
spread(key="stat", value="value") %>%
rename(value_med=md, value_lo=lo, value_hi=hi) %>%
select(iso3:units_short, value_med, value_lo, value_hi, everything())
# Inspect
str(data)
# Example plot
g <- ggplot(data %>% filter(country=="Ghana"), aes(x=age_range, y=value_med, fill=sex)) +
facet_wrap(~nutrient, ncol=4) +
geom_bar() +
theme_bw()
g
# Example plot
g <- ggplot(data %>% filter(country=="Ghana"), aes(x=age_range, y=value_med, fill=sex)) +
facet_wrap(~nutrient, ncol=4) +
geom_bar(stat="identity") +
theme_bw()
g
# Example plot
g <- ggplot(data %>% filter(country=="Ghana"), aes(x=age_range, y=value_med, fill=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity") +
theme_bw()
g
View(data)
# Example plot
g <- ggplot(data %>% filter(country=="Ghana"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity") +
theme_bw()
g
?geom_bar
# Example plot
g <- ggplot(data %>% filter(country=="Ghana" & nutrient=="calcium"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity") +
theme_bw()
g
# Example plot
g <- ggplot(data %>% filter(country=="Ghana" & nutrient=="calcium"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw()
g
# Example plot
g <- ggplot(data %>% filter(country=="Germany" & nutrient=="calcium"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw()
g
# Export
saveRDS(data, file=file.path(outputdir, "genus_nutrient_supplies_by_age_sex_2011.Rds"))
# Example plot
g <- ggplot(data %>% filter(country=="Japan" & nutrient=="calcium"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw()
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw()
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
theme(legend.position = "bottom")
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom")
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5))
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 1))
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjuts=0))
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=0))
g
# Example plot
g <- ggplot(data %>% filter(country=="Japan"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
g
# Example plot
g <- ggplot(data %>% filter(country=="France"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
g
# Example plot
g <- ggplot(data %>% filter(country=="Canada"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
g
# Files
files_merge <- list.files(file.path(inputdir, "nutrient_totals_by_age_sex"), pattern=".csv")
# Example data
exdata <- read.csv(file.path(inputdir, "nutrient_totals_by_age_sex", files_merge[1]), as.is=T, na.strings="*")
# Header info
header_info <- read.csv(file.path(inputdir, "nutrient_totals_by_age_sex", x), as.is=T, nrows=3, header=F, na.strings="*") %>%
select(4:ncol(.)) %>% t() %>%
as.data.frame(stringsAsFactors=F) %>%
rename(nutrient=V1, stat=V2, units=V3) %>%
mutate(stat=recode(stat, "High 95% UI"="hi", "Low 95% UI"="lo", "Median"="md"),
col_name=paste(nutrient, stat, sep="_"))
# Column names
col_names <- c("iso3", "country", "blank", header_info$col_name)
# Merge
x <- files_merge[1]
data_orig <- purrr::map_df(files_merge, function(x) {
# Get sex
sex <- strsplit(x, split="_")[[1]][3] %>%
gsub(".csv", "", .)
# Get age range
age_range <- strsplit(x, split="_")[[1]][2] %>%
gsub("age", "", .)
# Read data
fdata <- read.csv(file.path(inputdir, "nutrient_totals_by_age_sex", x), as.is=T, skip=3, na.strings="*", col.names = col_names) %>%
mutate(age_range=age_range,
sex=sex) %>%
select(age_range, sex, everything())
})
# Format data
data <- data_orig %>%
# Rearrange columns
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
arrange(iso3, age_range) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Add nutrient and stat
left_join(header_info, by=c("key"="col_name")) %>%
# Format units
rename(units_long=units) %>%
mutate(units_short=gsub("/person/day", "", units_long)) %>%
# Arrange columns
select(-key) %>%
select(iso3, country, age_range, sex, nutrient, units_long, units_short, stat, value, everything()) %>%
# Spread stats
spread(key="stat", value="value") %>%
rename(value_med=md, value_lo=lo, value_hi=hi) %>%
select(iso3:units_short, value_med, value_lo, value_hi, everything())
# Inspect
str(data)
# Example plot
g <- ggplot(data %>% filter(country=="Canada"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
g
# Export
saveRDS(data, file=file.path(outputdir, "genus_nutrient_supplies_by_age_sex_2011.Rds"))
# Example plot
g <- ggplot(data %>% filter(country=="Ghana"), aes(x=age_range, y=value_med, fill=sex, group=sex)) +
facet_wrap(~nutrient, ncol=4, scale="free_y") +
geom_bar(stat="identity", position="dodge") +
theme_bw() +
labs(x="Age range", y="Daily per capita supply") +
theme(legend.position = "bottom",
axis.text.x = element_text(angle = 90, vjust = 0.5, hjust=1))
g
# Clear workspace
rm(list = ls())
# Setup
################################################################################
# Packages
library(ggplot2)
library(tidyverse)
# Directories
inputdir <- "data/genus/raw"
outputdir <- "data/genus/processed"
# The GENuS Dataverse:
# https://dataverse.harvard.edu/dataverse/GENuS
# GENuS datasets
# 1. Food composition tables for GENuS
# 2. Nutrient Totals (incl. Fortification) by Age and Sex (2011)
# 3. Edible Food by Age and Sex (2011)
# 4. Nutrient Totals by Age and Sex (2011)
# 5. Total Nutrient Supplies by Country and Year
# 6. Nutrient Supplies by Food and Country (2011)
# 7. Total Nutrient Supply including Fortification (2011)
# 8. Edible Food by Country and Year
# Files
files_merge <- list.files(file.path(inputdir, "edible_food_by_age_sex"), pattern=".csv")
# Example data
exdata <- read.csv(file.path(inputdir, "edible_food_by_age_sex", files_merge[1]), as.is=T, na.strings="*")
# Header info
header_info <- read.csv(file.path(inputdir, "edible_food_by_age_sex", files_merge[1]), as.is=T, nrows=3, header=F, na.strings="*") %>%
select(4:ncol(.)) %>% t() %>%
as.data.frame(stringsAsFactors=F) %>%
rename(food=V1, stat=V2, units=V3) %>%
mutate(stat=recode(stat, "High 95% UI"="hi", "Low 95% UI"="lo", "Median"="md"),
col_names=paste(food, stat, sep="_"))
col_names <- c("iso3", "country", "blank", header_info$col_names)
# Merge data
x <- files_merge[1]
data_orig <- purrr::map_df(files_merge, function(x) {
# Get sex
sex <- strsplit(x, split="_")[[1]][4] %>%
gsub(".csv", "", .)
# Get age range
age_range <- strsplit(x, split="_")[[1]][3] %>%
gsub(".csv", "", .)
# Read data
fdata <- read.csv(file.path(inputdir, "edible_food_by_age_sex", x),
as.is=T, skip=3, na.strings="*", col.names=col_names) %>%
mutate(age_range=age_range,
sex=sex) %>%
select(age_range, sex, everything())
})
# Format data
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything())
# Format data
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.))
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high")))
# Format data
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high"))) %>%
# Reshape
spread(key="stat", value="value") %>%
rename(value_md=median, value_lo=low, value_hi=high)
View(data)
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high")))
View(data)
?spread
vignette("pivot")
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high")))
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high"))) %>%
select(iso3, country, age_range, sex, food_name_messy, stat, value)
# Format data
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high"))) %>%
select(iso3, country, age_range, sex, food_name_messy, stat, value) %>%
# Reshape
spread(key="stat", value="value") %>%
rename(value_md=median, value_lo=low, value_hi=high)
View(data)
# Format data
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high"))) %>%
select(iso3, country, age_range, sex, food_name_messy, stat, value) %>%
# Reshape
spread(key="stat", value="value") %>%
rename(value_md=median, value_lo=low, value_hi=high) %>%
# Format age/sex
mutate(age_range=gsub("age", "", age_range),
sex=recode(sex, "bothsexes"="both"))
View(data)
View(header_info)
# Format data
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
stat=ifelse(grepl("_md", key), "median",
ifelse(grepl("_lo", key), "low", "high")))
View(data)
View(header_info)
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Format food/stat
left_join(header_info, c("key"="col_names"))
# mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
# stat=ifelse(grepl("_md", key), "median",
# ifelse(grepl("_lo", key), "low", "high"))) %>%
select(iso3, country, age_range, sex, food, units, stat, value) %>%
# Reshape
spread(key="stat", value="value")
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Add food, units, stat
left_join(header_info, c("key"="col_names")) %>%
# mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
# stat=ifelse(grepl("_md", key), "median",
# ifelse(grepl("_lo", key), "low", "high"))) %>%
select(iso3, country, age_range, sex, food, units, stat, value)
View(data)
data <- data_orig %>%
# Remove blank column
select(-blank) %>%
select(iso3, country, age_range, sex, everything()) %>%
# Convert wide-to-long
gather(key="key", value="value", 5:ncol(.)) %>%
# Arrange
arrange(iso3, age_range) %>%
# Add food, units, stat
left_join(header_info, c("key"="col_names")) %>%
# mutate(food_name_messy=gsub("_md|_lo|_hi", "", key),
# stat=ifelse(grepl("_md", key), "median",
# ifelse(grepl("_lo", key), "low", "high"))) %>%
select(iso3, country, age_range, sex, key, food, units, stat, value)
shiny::runApp('shiny/v2')
# Clear workspace
rm(list = ls())
# Setup
################################################################################
# Packages
library(ggplot2)
library(tidyverse)
# Directories
genusdir <- "data/genus/processed"
# Nutrient supply by country and year
nut_cntry_yr_orig <- read.rds(file.path(genusdir, "genus_nutrient_supplies_by_cntry_year.Rds"))
# Nutrient supply by country and year
nut_cntry_yr_orig <- readRDS(file.path(genusdir, "genus_nutrient_supplies_by_cntry_year.Rds"))
sort(unique(nut_cntry_yr_orig$nutrient))