-
Notifications
You must be signed in to change notification settings - Fork 0
/
trajectory_analysis_full.Rmd
1408 lines (1201 loc) · 35 KB
/
trajectory_analysis_full.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
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
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "Trajectory Analysis"
author:
- name: Brian Peña-Calero
email: [email protected]
affiliation: Innovar, UPCH
date: "`r Sys.Date()`"
output:
html_document:
toc: yes
toc_depth: 3
toc_float: yes
number_sections: yes
code_folding: show
code_download: yes
theme:
bootswatch: flatly
highlight: kate
highlight_downlit: true
editor_options:
chunk_output_type: console
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
<!-- IDentificar que ciudades no están coincidienco en area urbana y poblacion -->
<!-- Agregar análisis descriptivos, tabvlas de 2x2, etc. -->
# Carga de paquetes
```{r}
library(tidyverse)
library(gbmt)
library(multidplyr)
```
Crear carpetas de trabajo:
```{r}
fs::dir_create("01_data/raw/")
fs::dir_create("01_data/processed/")
```
# Importar datos
```{r}
library(sf)
salid1_pubsalid1 <- readr::read_csv("01_data/raw/SALID1_PUBSALID1.csv")
gdb_path <- "01_data/raw/Data Request MS242_09222023/MS242_L1.gdb"
gdb_salurbal <- st_layers(gdb_path)
cities_l1ad <- st_read(
gdb_path,
gdb_salurbal$name[[1]]
) %>%
as_tibble() %>%
st_as_sf() %>%
left_join(
salid1_pubsalid1
) %>%
relocate(SALID1, .after = PUBSALID1)
cities_l1ad_noislands <- st_read(
gdb_path,
gdb_salurbal$name[[2]]
) %>%
as_tibble() %>%
st_as_sf() %>%
left_join(
salid1_pubsalid1
) %>%
relocate(SALID1, .after = PUBSALID1)
```
## Datos Crecimiento Urbano
Los datos de crecimiento urbano actuales solo tienen la columna `ISO2` que identifica al país, y una codificación propia `SALID1` para las ciudades, que es con lo que necesitamos realizar el match, para tener los datos de ciudad en cuanto a su crecimiento poblacional y a la vez en cuánto a su crecimiento urbano.
```{r}
bec_backcast_l1ux <- read_csv("01_data/raw/BEC_BACKCAST_L1UX_20230302.csv")
```
Se adiciona la columna `SALID0` calculado como los 3 primeros dígitos de `SALID1`. Además se agrega `PUBSALID1`.
```{r}
bec_backcast_l1ux <- bec_backcast_l1ux %>%
mutate(
SALID0 = str_sub(SALID1, 1, 3),
.before = SALID1
) %>%
left_join(
salid1_pubsalid1
) %>%
relocate(PUBSALID1, .before = SALID1)
```
## Datos Poblacionales
Para el caso de los datos poblacionales, se tiene la identificación en nombre del país y la ciudad. Se agrega el identificador `ISO2`, para fines de matching.
```{r}
population <- st_read(
gdb_path,
gdb_salurbal$name[[3]]
) %>%
as_tibble() %>%
left_join(
salid1_pubsalid1
) %>%
relocate(SALID1, .after = PUBSALID1) %>%
drop_na(PUBSALID1)
```
```{r}
population <- population %>%
mutate(
ISO2 = case_match(
country,
"argentina" ~ "AR",
"brazil" ~ "BR",
"chile" ~ "CL",
"colombia" ~ "CO",
"costa rica" ~ "CR",
"el salvador" ~ "SV",
"guatemala" ~ "GT",
"mexico" ~ "MX",
"nicaragua" ~ "NI",
"panama" ~ "PA",
"peru" ~ "PE"
),
.before = country
) %>%
left_join(
bec_backcast_l1ux %>%
select(ISO2, SALID0) %>%
distinct()
) %>%
relocate(ISO2, SALID0) %>%
arrange(SALID0)
population
```
Se aplica una pequeña corrección a los datos numéricos poblacionales que contienen caracteres como `-` y `" "` (espacios) para representar valores perdidos.
```{r}
population <- population %>%
mutate(
across(
F1945:F2022,
as.numeric
)
)
population
```
> Se crea este objeto temporal a partir del formato en el objeto `population` que contiene la información de ISO2, SALID0, SALID1, country, City. Aquí debería reemplazarse con el una data que brinde una información equivalente.
```{r eval=FALSE}
city_info <- population %>%
select(
ISO2:City, PUBSALID1:SALID1
)
```
```{r eval=FALSE}
saveRDS(
city_info,
file = "01_data/processed/city_info.rds"
)
#city_info <- readRDS("01_data/processed/city_info.rds")
```
# Imputación de datos
Debido a que hay una gran cantidad de valores perdidos a través de los años en distintas ciudades, se realiza un proceso de imputación de datos tanto para los de crecimiento urbano como datos poblacionales.
El análisis de imputación se realiza para cada ciudad, por lo que se usará el enfoque de ***tidy nested*** para organizar los datos de tal manera que cada fila sea una ciudad; y su columna, sea un conjunto de datos que contenga la información de interés a través de los años. Para el proceso de imputación se usará el paquete `imputeTS` wrappeado en la función `safely` (paquete `purrr`) para evitar la detención de errores debido a problemas de convergencia o insuficiencia de datos en algunas ciudades.
```{r}
library(imputeTS)
na_kalman_safe <- safely(.f = na_kalman)
```
## Crecimiento Urbano
Los datos de crecimiento urbano proporcionado tienen información cada 5 años, por lo que se usará la misma técnica de imputación para tener información anual. Para ello primero se completará los años faltantes en el data.frame:
```{r}
bectuareal_tidy <- bec_backcast_l1ux %>%
distinct(PUBSALID1) %>%
crossing(YEAR = 1985:2015) %>%
left_join(
bec_backcast_l1ux %>%
select(PUBSALID1, YEAR, BECTUAREAL1UX)
) %>%
janitor::clean_names()
```
Ahora se procede a crear el formato nest:
```{r}
bectuareal_imp <- bectuareal_tidy %>%
group_nest(pubsalid1) %>%
mutate(
ts_data = map(
data,
~ ts(.x$bectuareal1ux, 1985, 2015)
),
kalman_data = map(
ts_data,
na_kalman_safe
)
)
```
En este caso también se tiene algunos errores (1)
```{r}
bectuareal_imp_errors <- bectuareal_imp %>%
filter(map_lgl(.$kalman_data, ~ !is.null(.x$error)))
```
Aunque en la mayoría de ciudades se logra imputar (370 ciudades).
```{r}
bectuareal_imp_clean <- bectuareal_imp %>%
filter(map_lgl(.$kalman_data, ~ is.null(.x$error))) %>%
mutate(kalman_data = map(kalman_data, 'result'))
```
Finalmente, se añadirá la información sobre la cantidad original de crecimiento urbano existente para fines de futuras validaciones:
```{r}
bectuareal_imp_merge <- bectuareal_imp_clean %>%
mutate(
kalman_data = map(
kalman_data,
~ as_tibble(.x) %>%
mutate(
year = 1985:2015
)
),
data_imputation = map2(
data, kalman_data,
~ .x %>%
left_join(.y,
by = join_by(year)
)
)
)
bectuareal_imp_merge <- bectuareal_imp_merge %>%
select(pubsalid1, data_imputation) %>%
unnest(cols = c(data_imputation)) %>%
rename(bectuareal1ux_imp = x)
```
## Datos poblacionales
Necesitamos ordenar los datos y darle un formato **nested**. Observamos que los datos poblacionales con los que se trabaja tiene 648 ciudades.
```{r}
population_nested <- population %>%
janitor::clean_names() %>%
rename_with(
~ str_replace(., "f", "x"),
f1945:f2015
) %>%
select(pubsalid1, x1945:x2015) %>%
pivot_longer(
cols = x1945:x2015,
names_to = "year",
values_to = "population"
) %>%
group_nest(pubsalid1)
population_nested
```
Se tiene una función que verifica una desviación máxima de valores poblacionales en una ciudad en particular a partir de su mediana a lo largo de los años. Por defecto, se usa el criterio de 20% máximo de variación. En caso algún valor poblacional supere este valor, se ingresará un `NA` en lugar del valor reportado. Así, la imputación podrá también estimar estos valores *anómalos*.
```{r}
fix_population <- function(data, desviacion_max = 0.2) {
data_wo_na <- na.omit(data)
if (length(data_wo_na) < 2) {
return(data)
}
median_population <- median(data_wo_na)
upper_limit <- median_population * (1 + desviacion_max)
lower_limit <- median_population * (1 - desviacion_max)
data_fix <- ifelse(
!is.na(data) & (data > upper_limit | data < lower_limit),
NA,
data
)
return(data_fix)
}
```
```{r}
population_imp <- population_nested %>%
mutate(
# Aplicación de la corrección
pop_fix = map(
data,
~ fix_population(.x$population) %>%
enframe(
name = "year",
value = "population"
) %>%
mutate(
year = paste0("x", 1945:2015)
)
),
# Transformar a objeto `time series`
ts_pop_fix = map(
pop_fix,
~ ts(.x$population, 1945, 2015) %>%
log()
),
# Aplicación de la imputación
kalman_pop_fix = map(
ts_pop_fix,
na_kalman_safe
)
)
```
Debido a que algunas ciudades tienen valores perdidos en todos los años de análisis, no en todos los casos la imputación es factible. En este caso hubo un total de *208* ciudades con problemas de imputación.
```{r}
population_imp_errors <- population_imp %>%
filter(map_lgl(.$kalman_pop_fix, ~ !is.null(.x$error)))
```
En tanto, la cantidad de ciudades con las que se podrá trabajar con información poblacional será de *440*.
```{r}
population_imp_clean <- population_imp %>%
filter(map_lgl(.$kalman_pop_fix, ~ is.null(.x$error))) %>%
mutate(kalman_pop_fix = map(kalman_pop_fix, "result"))
```
Finalmente, se añadirá la información sobre la cantidad original de dato poblacional existente para fines de futuras validaciones:
```{r}
population_imp_merge <- population_imp_clean %>%
mutate(
kalman_pop_fix = map(
kalman_pop_fix,
~ as_tibble(.x) %>%
mutate(
x = exp(x),
year = paste0("x", 1945:2015)
)
),
data_imputation = map2(
pop_fix, kalman_pop_fix,
~ .x %>%
left_join(.y,
by = join_by(year)
)
)
)
population_imp_merge <- population_imp_merge %>%
select(pubsalid1, data_imputation) %>%
unnest(cols = c(data_imputation)) %>%
rename(population_imp = x) %>%
mutate(
year = str_remove(year, "x"),
year = as.numeric(year)
)
population_imp_merge
```
# Unificación de datos
En este punto, ya se tiene los datos poblacionales y de crecimiento urbano limpios y ordenados. Se realiza la unificación en base al código `salid1` que deberían tener ambos objetos.
Se usa la función `full_join` para tener la posibilidad de analizar los datos poblacionales y de crecimiento juntos y separados.
```{r}
# bectuareal_imp_merge %>%
# filter(year == 1985)
# pubsalid1_nopopulation <- anti_join(
# bectuareal_imp_merge,
# population_imp_merge,
# by = join_by(pubsalid1, year)
# ) %>%
# filter(year == 1985) %>%
# pull(pubsalid1)
# pubsalid1_nobectu <- anti_join(
# population_imp_merge,
# bectuareal_imp_merge,
# by = join_by(pubsalid1, year)
# ) %>%
# filter(year == 1985) %>%
# pull(pubsalid1)
# anti_join(
# bectuareal_imp_merge,
# population_imp_merge,
# by = join_by(pubsalid1, year)
# ) %>%
# filter(year == 1985)
```
```{r}
pop_bectuareal <- full_join(
population_imp_merge,
bectuareal_imp_merge,
by = join_by(pubsalid1, year)
)
pop_bectuareal %>%
filter(pubsalid1 == 514651)
```
# Grouped-based Model Trajectory (GBMT)
## Formateo de datos
Se crearán 3 objetos:
- `pop_bectu_gbmt_df`: Contiene a las coincidencias completas de datos poblacionales y crecimiento poblacional en las ciudades.
- `pop_gbmt_df`: Contiene solo a los valores imputados completos de las poblaciones en ciudades.
- `bectu_gbmt_df`: Contiene solo a los valores imputados completos de los crecimientos poblacionales en ciudades.
```{r}
pop_bectu_gbmt_df <- pop_bectuareal %>%
select(
pubsalid1, year,
population_imp, bectuareal1ux_imp
) %>%
drop_na()
pop_gbmt_df <- pop_bectuareal %>%
select(pubsalid1, year, population_imp) %>%
drop_na(population_imp)
bectu_gbmt_df <- pop_bectuareal %>%
select(pubsalid1, year, bectuareal1ux_imp) %>%
drop_na(bectuareal1ux_imp)
```
## Estimación
Configuración de uso multinúcleo para el análisis:
```{r}
cluster <- new_cluster(parallel::detectCores())
cluster_library(cluster, c("dplyr", "purrr", "gbmt"))
gbmt_safe <- safely(.f = gbmt)
cluster_copy(cluster, "gbmt_safe")
```
Se crea una *pseudo-matriz* que contiene los parámetros de análisis y los conjuntos de datos para analizar en cada fila.
```{r}
gbmt_matrix <- expand_grid(
d = 2,
ng = 1:10,
scale = c(2, 4),
tibble(
data_gbmt = list(
pop_bectu_gbmt_df,
pop_gbmt_df,
bectu_gbmt_df
),
x_names = list(
c("population_imp", "bectuareal1ux_imp"),
c("population_imp"),
c("bectuareal1ux_imp")
)
)
)
```
Este siguiente bloque realiza las estimaciones especificadas arriba usando todos los núcleos del procesador.
```{r}
gbmt_outputs <- gbmt_matrix %>%
partition(cluster) %>%
mutate(
gbmt_out = pmap(
list(
data_gbmt, x_names,
d, ng, scale
),
~ gbmt_safe(
x.names = ..2,
unit = "pubsalid1",
time = "year",
data = as.data.frame(..1),
d = ..3,
ng = ..4,
scaling = ..5
)
)
)
gbmt_collect <- gbmt_outputs %>%
collect()
```
```{r eval=FALSE}
fs::dir_create("01_data/processed/")
saveRDS(gbmt_collect,
file = "01_data/processed/gbmt_collect_pop_bectu.rds"
)
#gbmt_collect <- readRDS("01_data/processed/gbmt_collect_pop_bectu.rds")
```
```{r}
gbmt_collect_errors <- gbmt_collect %>%
filter(map_lgl(.$gbmt_out, ~ !is.null(.x$error)))
gbmt_collect_clean <- gbmt_collect %>%
filter(map_lgl(.$gbmt_out, ~ is.null(.x$error))) %>%
mutate(gbmt_out = map(gbmt_out, 'result'))
```
## Índices de validación
```{r}
source("fit-index-gbmt.r")
```
```{r}
gbmt_fit_total <- gbmt_collect_clean %>%
mutate(
AIC = map_dbl(gbmt_out, AIC),
BIC = map_dbl(gbmt_out, BIC),
L = map_dbl(gbmt_out, logLik),
APPA = map_dbl(gbmt_out, ~ mean(.$appa)),
Mismatch = map_dbl(gbmt_out, calculate_mismatch),
SD_GMP = map_dbl(gbmt_out, calculate_SD_GMP),
OCC = map_dbl(gbmt_out, calculate_OCC),
smallest_group = map2_dbl(
gbmt_out, ng,
~ min(table(factor(.x$assign, levels = 1:.y))) /
sum(table(factor(.x$assign, levels = 1:.y)))
),
scale_name = case_match(
scale,
2 ~ "standardization",
4 ~ "logarithmic"
),
city_info = list(city_info)
) %>%
relocate(scale_name, .after = "scale") %>%
arrange(ng, d, scale)
```
Exportar la información sobre los índices de ajuste:
```{r}
fs::dir_create("02_output/tables/")
gbmt_fit_total %>%
select(d:scale, scale_name, x_names,
AIC:smallest_group) %>%
openxlsx::write.xlsx(
file = "02_output/tables/fit_measures_models_gbmt.xlsx"
)
```
Exportar el output de las regresiones:
```{r}
# Esta función procesa un único conjunto de regresiones
process_regressions <- function(regressions, ng, scale) {
result_list <- list()
for (group in names(regressions)) {
for (var_name in names(regressions[[group]])) {
tmp <- broom::tidy(regressions[[group]][[var_name]])
tmp$variable <- var_name
tmp$ng <- ng
tmp$scale <- scale
tmp$group <- as.integer(group)
result_list[[length(result_list) + 1]] <- tmp
}
}
bind_rows(result_list)
}
# Procesa todas las regresiones en gbmt_fit_total$gbmt_out
results_all <- lapply(1:length(gbmt_fit_total$gbmt_out), function(i) {
process_regressions(
regressions = gbmt_fit_total$gbmt_out[[i]]$reg,
ng = gbmt_fit_total$ng[i],
scale = gbmt_fit_total$scale_name[i]
)
})
# Convierte los resultados en un formato más manejable
resultados_tidy <- bind_rows(results_all)
```
```{r eval=FALSE}
saveRDS(
resultados_tidy,
file = "02_output/tables/resultados_tidy_reg.rds"
)
```
## Re-ingreso de información
```{r}
gbmt_fit_total <- gbmt_fit_total %>%
mutate(
data_gbmt_extract = map(
gbmt_out,
~ .x$data.norm %>%
rename_with(
~ paste0(., "_norm"),
contains("_imp")
) %>%
left_join(
.x$data.orig,
by = join_by(pubsalid1, year)
) %>%
as_tibble()
),
assign_list = map(
gbmt_out,
~ enframe(.x$assign.list) %>%
unnest(cols = c(value)) %>%
mutate(
pubsalid1 = as.factor(value)
) %>%
select(pubsalid1, group = name)
)
)
```
> En este punto se unificará la información de los datos poblacionales, crecimiento urbano, grupo al que pertenece debido al análisis gbmt y la infiormación de las ciudades que está almacenada en `city_info`. Si esa información es incompleta vamos a tener problemas de NA's.
```{r}
gbmt_fit_final <- gbmt_fit_total %>%
mutate(
gbmt_fit_total = pmap(
list(
data_gbmt_extract,
assign_list,
city_info
),
~ left_join(
..1,
..2,
by = join_by(pubsalid1)
) %>%
# mutate(
# SALID0 = str_sub(salid1, 1, 3)
# ) %>%
left_join(
..3 %>%
rename(pubsalid1 = PUBSALID1) %>%
mutate(pubsalid1 = factor(pubsalid1)),
by = join_by(pubsalid1)
)
)
)
```
```{r}
saveRDS(gbmt_fit_final,
file = "01_data/processed/gbmt_fit_final.rds"
)
#gbmt_fit_final <- readRDS("01_data/processed/gbmt_fit_final.rds")
```
La estructura en este punto estaría quedando así:
<!-- r$> gbmt_fit_final
# A tibble: 55 × 19
d ng scale scale_name data_gbmt x_names gbmt_out AIC BIC
<dbl> <int> <dbl> <chr> <list> <list> <list> <dbl> <dbl>
1 2 1 2 standardization <tibble> <chr> <gbmt> 17505. 17567.
2 2 1 2 standardization <tibble> <chr> <gbmt> 74488. 74522.
3 2 1 2 standardization <tibble> <chr> <gbmt> 1152. 1175.
4 2 1 4 logarithmic <tibble> <chr> <gbmt> -9232. -9176.
5 2 1 4 logarithmic <tibble> <chr> <gbmt> -17366. -17332.
6 2 1 4 logarithmic <tibble> <chr> <gbmt> 1412. 1441.
7 2 2 2 standardization <tibble> <chr> <gbmt> 8300. 8432.
8 2 2 2 standardization <tibble> <chr> <gbmt> 51364. 51439.
9 2 2 2 standardization <tibble> <chr> <gbmt> -5597. -5530.
10 2 2 4 logarithmic <tibble> <chr> <gbmt> -21104. -20993.
# ℹ 45 more rows
# ℹ 10 more variables: L <dbl>, APPA <dbl>, Mismatch <dbl>, SD_GMP <dbl>,
# OCC <dbl>, smallest_group <dbl>, city_info <list>,
# data_gbmt_extract <list>, assign_list <list>, gbmt_fit_total <list>
# ℹ Use `print(n = ...)` to see more rows -->
## Generación de Gráficos
### Gráficos de barra y líneas
```{r}
library(patchwork)
gg_line_plot <- function(datos, y_variable, y_label, type = "standardized") {
gg <- ggplot(datos, aes(x = year, y = !!sym(y_variable))) +
geom_line(aes(group = pubsalid1), color = "grey80") +
geom_smooth(method = "lm", formula = y ~ I(x^1) + I(x^2)) +
scale_x_continuous(breaks = c(seq(1945, 2015, 15), 2015)) +
labs(x = NULL, y = y_label) +
theme_bw()
if (type == "standardized") {
gg +
facet_wrap(vars(group))
} else if (type == "non-standardized") {
gg +
scale_y_continuous(
labels = scales::label_number()
) +
facet_wrap(vars(group), scales = "free")
}
}
gg_stacked_bar <- function(datos) {
datos %>%
count(country, group) %>%
group_by(country) %>%
mutate(
percent = n / sum(n),
country = str_to_title(country)
) %>%
ungroup() %>%
ggplot(aes(x = country, y = percent)) +
geom_col(aes(fill = group)) +
innovar::scale_fill_innova("ccvi") +
labs(
fill = "Cluster",
y = NULL,
x = NULL
) +
geom_label(
aes(
group = group,
label = scales::percent(percent, accuracy = 1)
),
position = position_stack(vjust = 0.5)
) +
scale_y_continuous(
labels = scales::percent_format()
) +
theme_minimal() +
theme(axis.text.x = element_text(angle = 20, hjust = 1))
}
gg_bar <- function(datos, year_filter = 2015) {
datos %>%
filter(year == year_filter) %>%
count(country, group) %>%
group_by(country) %>%
mutate(
percent = n / sum(n),
country = str_to_title(country)
) %>%
ungroup() %>%
ggplot(aes(x = country, y = n)) +
geom_col(aes(fill = group)) +
innovar::scale_fill_innova("ccvi") +
labs(
fill = "Cluster",
y = NULL,
x = NULL
) +
geom_label(
aes(
group = group,
label = n
),
position = position_stack(vjust = 0.5)
) +
theme_minimal() +
theme(axis.text.x = element_text(angle = 20, hjust = 1))
}
```
Generación de los gráficos de línea estandarizados, sin estandarizar, stacked bar y barras (frecuencia).
```{r}
gbmt_fit_plots <- gbmt_fit_final %>%
mutate(
line_plot_std = map2(
gbmt_fit_total,
x_names,
~ {
if (all(.y == c("population_imp", "bectuareal1ux_imp"))) {
p1 <- gg_line_plot(.x, "population_imp_norm", "Standardized Population")
p2 <- gg_line_plot(.x, "bectuareal1ux_imp_norm", "Standardized Bectuareal1ux")
p1 / p2
} else if (all(.y == c("population_imp"))) {
gg_line_plot(.x, "population_imp_norm", "Standardized Population")
} else {
gg_line_plot(.x, "bectuareal1ux_imp_norm", "Standardized Bectuareal1ux")
}
}
),
line_plot = map2(
gbmt_fit_total,
x_names,
~ {
if (all(.y == c("population_imp", "bectuareal1ux_imp"))) {
p1 <- gg_line_plot(.x, "population_imp", "Population", "non-standardized")
p2 <- gg_line_plot(.x, "bectuareal1ux_imp", "Bectuareal1ux", "non-standardized")
p1 / p2
} else if (all(.y == c("population_imp"))) {
gg_line_plot(.x, "population_imp", "Population", "non-standardized")
} else {
gg_line_plot(.x, "bectuareal1ux_imp", "Bectuareal1ux", "non-standardized")
}
}
),
stacked_bar_plot = map(
gbmt_fit_total,
gg_stacked_bar
),
bar_plot = map(
gbmt_fit_total,
gg_bar
)
)
```
Finalmente guardamos los gráficos generados:
```{r}
# Función para guardar una lista de gráficos
save_plots <- function(plots, prefix, x_names, cluster, scale_name = NULL, std = FALSE) {
walk2(plots, seq_along(plots), function(plot, i) {
# Crear el nombre base con las variables
var_names <- str_replace_all(x_names[[i]], "_imp", "")
var_string <- str_c(var_names, collapse = "-")
# Crear el nombre del archivo usando el número de cluster
filename <- paste0(prefix, "-", cluster[[i]], "-", var_string)
if (!is.null(scale_name[[i]])) {
filename <- paste0(filename, "-", scale_name[[i]])
}
if (std) {
filename <- paste0(filename, "-std")
}
filename <- paste0(filename, ".png")
ggsave(
filename,
plot,
dpi = 300,
bg = "white"
)
})
}
fs::dir_create("02_output/plots/line_plots_std/")
fs::dir_create("02_output/plots/line_plots/")
fs::dir_create("02_output/plots/stacked_bar_plots/")
fs::dir_create("02_output/plots/bar_plots/")
# Aplicar la función a cada una de las últimas cuatro columnas
save_plots(
gbmt_fit_plots$line_plot_std,
"02_output/plots/line_plots_std/lineplot",
gbmt_fit_final$x_names,
gbmt_fit_final$ng,
gbmt_fit_final$scale_name,
std = TRUE
)
save_plots(
gbmt_fit_plots$line_plot,
"02_output/plots/line_plots/lineplot",
gbmt_fit_final$x_names,
gbmt_fit_final$ng,
gbmt_fit_final$scale_name
)
save_plots(
gbmt_fit_plots$stacked_bar_plot,
"02_output/plots/stacked_bar_plots/stackedbarplot",
gbmt_fit_final$x_names,
gbmt_fit_final$ng,
gbmt_fit_final$scale_name
)
save_plots(
gbmt_fit_plots$bar_plot,
"02_output/plots/bar_plots/barplot",
gbmt_fit_final$x_names,
gbmt_fit_final$ng,
gbmt_fit_final$scale_name
)
```
### Generación de mapas
En esta sección se unificarán las geometrías de las ciudades con la información de la columna `City` que ahora mismo viene de los datos poblacionales. Actualmente se está usando geometrías proporcionadas por `geodata::gadm()` sin embargo, no se está teniendo coincidencias adecuadas en las ciudades. **Esto debería modificarse de acuerdo a como tengan las geometrías almacenadas**.
```{r}
cities_l1ad_noislands %>% plot()
cities_l1ad_noislands
cities_l1ad %>% plot()
```
```{r}
library(sf)
```
```{r}
get_shp <- function(ISO2) {
# Obtener shp_1
shp_0 <- geodata::gadm(
ISO2,
path = "01_data/raw/shp/",
level = 0
) %>%
st_as_sf()
# Obtener shp_1
shp_1 <- geodata::gadm(
ISO2,
path = "01_data/raw/shp/",
level = 1
) %>%
st_as_sf()
# Obtener shp_2 y aplicar las transformaciones
shp_2 <- cities_l1ad_noislands %>%
filter(COUNTRYAB == ISO2) %>%
janitor::clean_names()
# shp_2 <- geodata::gadm(
# ISO2,
# path = "01_data/raw/shp/",
# level = 2
# ) %>%
# st_as_sf() %>%
# mutate(
# NAME_2 = str_to_lower(NAME_2),
# NAME_2 = case_when(
# str_detect(NAME_2, "capital") ~ str_to_lower(NAME_1),
# TRUE ~ NAME_2
# )
# )
# Devolver la lista con shp_1 y shp_2
list(
shp_0 = shp_0,
shp_1 = shp_1,
shp_2 = shp_2
)
}
shp_list <- unique(gbmt_fit_final$gbmt_fit_total[[1]]$ISO2) %>%
append(
c("GUY", "SUR", "BOL", "PRY",
"URY", "ECU", "BLZ", "HND",
"TTO", "VEN")
) %>%
set_names() %>%
map(get_shp)
```
Creamos una función para unr los datos y los shapefiles
```{r}
join_data_shp <- function(data, shp_list) {