-
Notifications
You must be signed in to change notification settings - Fork 2
/
04-turismo-interno.Rmd
2051 lines (1693 loc) · 92.8 KB
/
04-turismo-interno.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
---
editor_options:
markdown:
wrap: sentence
---
```{r include=FALSE}
knitr::opts_chunk$set(echo = FALSE, warning = FALSE, message = FALSE, fig.topcaption=TRUE)
library(gt)
library(tidyverse)
library(lubridate)
library(hrbrthemes)
library(ggtext)
library(glue)
library(comunicacion)
library(evyth)
library(haven)
library(herramientas)
options(scipen = 99)
Anio <- "2022"
```
# **Turismo Interno en Argentina** {#turismo-interno}
## Introducción
En este capítulo se presenta un resumen de los principales indicadores del turismo interno de la Argentina resultantes de la Encuesta de Viajes y Turismo de los Hogares (EVyTH). A partir de este relevamiento se realizó una descripción del comportamiento turístico de los argentinos en 2022, como también de los resultados del turismo interno.
El objetivo de la EVyTH es medir y caracterizar el flujo y el gasto de los viajes turísticos (viajes con pernocte y visitas de un día o excursiones) que las personas residentes en Argentina realizan tanto dentro del país (turismo interno) como al exterior (turismo emisivo). En conjunto, los viajes turísticos relevados dan cuenta del turismo nacional.
Cabe destacar también que a partir de 2012 la EVyTH se realiza de manera mensual entrevistando telefónicamente unos dos mil seiscientos hogares residentes en las capitales de todas las provincias argentinas y en los aglomerados urbanos que no son capitales pero cuya población es superior a los cien mil habitantes. Sumados, ambos casos concentran actualmente casi dos tercios de la población total del país. Este relevamiento permite realizar un seguimiento pormenorizado de lo que ocurre en el turismo interno, observando y analizando las variaciones que se producen mes a mes y trimestre a trimestre, confrontándolas
con el mismo período del año anterior.
Gracias a la continuidad temporal en el desarrollo de la encuesta, es posible la observación sostenida de un grupo de variables, lo que permite vislumbrar las características estructurales propias de la población que realiza viajes en el país.
## Comportamiento turístico
El objetivo de este apartado es caracterizar el perfil de las personas que en el año `r as.character(Anio)` realizaron al menos un viaje turístico[^viaje-turistico].
[^viaje-turistico]: Se entiende por viaje turístico a todo desplazamiento con una duración inferior a un año que tiene como destino un lugar ubicado fuera del entorno habitual del hogar, es decir distante a más de 40Km (CABA y Partidos del GBA) / 20km (resto de los aglomerados) del lugar de residencia permanente del hogar, siempre y cuando ese lugar no sea visitado con frecuencia semanal. En los desplazamientos a segundas viviendas del hogar no rige el criterio de entorno habitual y se los considera que siempre son un viaje turístico (por definición). Se excluyen los desplazamientos que tienen como principal motivo el desempeño de una actividad remunerada bajo una relación salarial en destino o cuando el traslado forma parte del trabajo. Si quien se traslada fuera del entorno habitual pernocta al menos una noche en el lugar visitado se trata de un viaje propiamente dicho; en cambio, si no pernocta, se trata de una visita de un día o excursión.
```{r}
comptur <- read_file_srv("/srv/DataDNMYE/evyth/comportamiento_turistico/EVyTH_BASE USUARIO_COMPTUR2006-10-11a22_PERSONAS.sav") %>%
zap_label()
data_graph1 <- comptur %>%
filter(!anio %in% c(2009,2008,2007)) %>%
group_by(anio, al_menos_un_viaje) %>%
summarise(participacion = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(total = sum(participacion)) %>%
ungroup() %>%
mutate(participacion = participacion/total,
al_menos_un_viaje = case_when(al_menos_un_viaje == 1 ~ "Si",
TRUE ~ "No"))
data_viaje <- data_graph1 %>%
filter(anio == Anio, al_menos_un_viaje == "Si") %>%
pull(participacion) %>% lbl_percent(decimales = 1)
data_var <- data_graph1 %>% filter(anio %in% c(Anio, 2021), al_menos_un_viaje == "Si") %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
mutate(var = (participacion-lag(participacion))*100) %>% filter(anio == Anio) %>%
pull(var) %>%
lbl_decimal()
```
Del total de personas de un año y más que residen en los grandes aglomerados urbanos del país, el `r data_viaje` realizó al menos un viaje turístico durante el año `r as.character(Anio)`, lo que representó `r ifelse(data_viaje > 0, "un incremento", "una disminución")` de `r data_var` p.p. respecto del año anterior.
```{r comtur1, fig.cap=glue("Personas de un año y más que realizaron al menos un viaje al año. Distribución porcentual. Años 2006 y 2010-{Anio}.")}
data_graph1 %>%
mutate(anio = as.character(anio)) %>%
ggplot(aes(anio, participacion, group = al_menos_un_viaje)) +
geom_col(position = position_dodge(), aes(fill = al_menos_un_viaje)) +
geom_label(aes(label = paste0(format(round(participacion*100, 1), decimal.mark = ","), "%")), label.size = 0.2,
label.padding = unit(0.15, "lines"),
position = position_dodge(width = 0.9), vjust = -0.2, size = 2.5) +
scale_fill_dnmye() +
scale_x_discrete(breaks = c("2006", as.character(seq(2010, max(comptur$anio))))) +
scale_y_percent(limits = c(0,1)) +
theme_minimal() +
theme(legend.position = "bottom",
plot.caption = element_markdown()) +
labs(x = "", y = "", fill = "", caption = md("**Fuente**: DNMyE en base a información de la EVyTH"))
```
```{r}
tabla1 <- comptur %>%
filter(anio %in% c(2019,2021,Anio)) %>%
group_by(anio, al_menos_un_viaje, region_origen) %>%
summarise(participacion = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, region_origen) %>%
mutate(total = sum(participacion)) %>%
ungroup() %>%
mutate(participacion = participacion/total,
anio = paste0("anio_",as.character(anio))) %>%
filter(al_menos_un_viaje == 1) %>%
crear_etiqueta("region_origen") %>%
select(-c(al_menos_un_viaje, total)) %>%
pivot_wider(names_from = "anio", values_from = "participacion") %>%
mutate(#var_anio_06 = (anio_2021-anio_2006)*100,
var_anio_21 = (anio_2022-anio_2021)*100, #MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
var_anio_19 = (anio_2022-anio_2019)*100,#MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
region_origen = str_replace(region_origen, "Centro", "Córdoba"),
region_origen = str_replace(region_origen, "Ciudad de Buenos Aires", "CABA"),
region_origen = str_replace(region_origen, "Provincia de Buenos Aires", "PBA"))
region_max <- tabla1 %>%
select(region_origen, value = "var_anio_19") %>%
filter(value == min(value)) %>%
pull(region_origen)
value_max <- tabla1 %>% select(region_origen, var_anio_19) %>% arrange(var_anio_19) %>% slice(1) %>% pull (var_anio_19)
```
Cuando se analizó la distribución de personas que realizaron al menos un viaje en el año por región de residencia se observó que disminuyeron, en puntos porcentuales, las proporciones del año `r as.character(Anio)` respecto de los valores prepandemia para todas las regiones. Esta caída se acentuó en la región `r region_max` (`r value_max %>% lbl_decimal()` p.p.).
```{r comtur2}
total_tabla1 <- comptur %>%
filter(anio %in% c(2019,2021,Anio)) %>%
group_by(anio, al_menos_un_viaje) %>%
summarise(participacion = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(total = sum(participacion)) %>%
ungroup() %>%
mutate(region_origen = "Total",
participacion = participacion/total,
anio = paste0("anio_",as.character(anio))) %>%
filter(al_menos_un_viaje == 1) %>%
select(-c(al_menos_un_viaje, total)) %>%
pivot_wider(names_from = "anio", values_from = "participacion") %>%
mutate(#var_anio_06 = (anio_2021-anio_2006)*100,
var_anio_21 = (anio_2022-anio_2021)*100,#MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
var_anio_19 = (anio_2022-anio_2019)*100)#MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
total_tabla1 <- total_tabla1 %>%
rbind(tabla1) %>%
gt()%>%
cols_label(region_origen = "Región de residencia",
#anio_2006 = "2006",
anio_2021 = "2021",#MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
anio_2019 = "2019",
anio_2022 = "2022",
#var_anio_06 = "Var p.p. \n2021/2006",
var_anio_21 = "Var p.p. \n2022/2021",#MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
var_anio_19 = "Var p.p. \n2022/2019") %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO ANUARIO
gt_theme_dnmye(var_total = region_origen) %>%
fmt_number(columns = c(5,6), decimals = 1, dec_mark = ",", sep_mark = ".") %>%
fmt_percent(columns = c(2,3,4), decimals = 1, dec_mark = ",", sep_mark = ".") %>%
tab_source_note(
source_note = md(
"**Fuente:** DNMyE en base a información de la EVyTH")) %>%
tab_caption(caption = md(glue("Personas de un año y más que realizaron al menos un viaje al año, por año según región de residencia. Distribución porcentual. Años 2019/2021/{Anio}.")))
total_tabla1
```
```{r}
genero <- comptur %>%
filter(anio %in% c(2012:Anio)) %>%
crear_etiqueta(variables = "p005") %>%
group_by(anio, al_menos_un_viaje, sexo = p005) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, sexo) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Sexo")
j_genero <- comptur %>%
filter(anio %in% c(2012:Anio)) %>%
crear_etiqueta(variables = "j_sexo") %>%
group_by(anio, al_menos_un_viaje, sexo = j_sexo) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, sexo) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Sexo del jefe")
total <- comptur %>%
filter(anio %in% c(2012:Anio)) %>%
group_by(anio, al_menos_un_viaje) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(sexo = "Total",
categoria = "")
tabla_genero <- rbind(total, genero, j_genero) %>%
select(-c(al_menos_un_viaje, turistas)) %>%
pivot_wider(names_from = "anio", values_from = "participacion",
names_prefix = "porc_") %>%
mutate(pp_var = (porc_2022 - porc_2021) * 100) #MODIFICAR MANUAL CUANDO CAMBIA ANIO
texto_mujer <- tabla_genero %>%
filter(categoria == "Sexo", sexo == "Mujer") %>%
pull(contains(as.character(Anio))) %>%
lbl_percent()
texto_varon <- tabla_genero %>%
filter(categoria == "Sexo", sexo == "Varón") %>%
pull(contains(as.character(Anio))) %>%
lbl_percent()
texto_var_mujer <- tabla_genero %>%
filter(categoria == "Sexo", sexo == "Mujer") %>%
pull(pp_var) %>%
lbl_decimal()
texto_var_varon <- tabla_genero %>%
filter(categoria == "Sexo", sexo == "Varón") %>%
pull(pp_var) %>%
lbl_decimal()
texto_var_mujer_j <- tabla_genero %>%
filter(categoria == "Sexo del jefe", sexo == "Mujer") %>%
pull(pp_var) %>%
lbl_decimal()
texto_var_varon_j <- tabla_genero %>%
filter(categoria == "Sexo del jefe", sexo == "Varón") %>%
pull(pp_var) %>%
lbl_decimal()
```
Por otro lado, se comprobó que la participación de acuerdo al sexo fue, en `r as.character(Anio)`, del `r texto_mujer` en las mujeres y del `r texto_varon` en los varones, valores por debajo de la prepandemia. Mientras que las variaciones en comparación al año 2021 fueron del `r texto_var_mujer` p.p. y `r texto_var_varon` p.p., respectivamente. Por su parte, en relación al sexo del jefe de hogar las participaciones variaron en un `r texto_var_mujer_j` p.p. las mujeres y `r texto_var_varon_j` p.p. los varones.
```{r comtur3, fig.cap=glue()}
tabla_genero_f <- tabla_genero %>%
gt(groupname_col = "categoria") %>%
cols_label(sexo = "",
porc_2012 = "2012",
porc_2013 = "2013",
porc_2014 = "2014",
porc_2015 = "2015",
porc_2016 = "2016",
porc_2017 = "2017",
porc_2018 = "2018",
porc_2019 = "2019",
porc_2020 = "2020",
porc_2021 = "2021",
porc_2022 = "2022",#AGREGAR ANIO MANUAL
pp_var = glue("Var. i.a. en p.p. \n{Anio}/2021")) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
#fmt_number(columns = pp_var, decimals = 1, dec_mark = ",") %>%
gt_theme_dnmye(var_total = sexo) %>%
tab_options(row_group.font.weight = "bold") %>%
tab_source_note(
source_note = md(
"**Fuente**: DNMyE en base a información de la EVyTH")
) %>%
tab_caption(caption = md(glue("Personas de un año y más que realizaron al menos un viaje al año por sexo y sexo del jefe del hogar. Distribución porcentual. Años 2012-{Anio}.")))
tabla_genero_f
```
```{r}
edad <- comptur %>%
filter(anio %in% c(2012:Anio)) %>%
crear_etiqueta(variables = "p006_agrup") %>%
group_by(anio, al_menos_un_viaje, edad = p006_agrup) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, edad) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Edad")
j_edad <- comptur %>%
filter(anio %in% c(2012:Anio)) %>%
crear_etiqueta(variables = "j_edad") %>%
group_by(anio, al_menos_un_viaje, edad = j_edad) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, edad) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Edad del jefe")
total <- comptur %>%
filter(anio %in% c(2012:Anio)) %>%
group_by(anio, al_menos_un_viaje) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(edad = "Total",
categoria = "")
tabla_edad <- rbind(total, edad, j_edad) %>%
select(-c(al_menos_un_viaje, turistas)) %>%
pivot_wider(names_from = "anio", values_from = "participacion",
names_prefix = "porc_") %>%
mutate(pp_var = (porc_2022 - porc_2021) * 100) #MODIFICAR MANUAL CUANDO CAMBIA ANIO
texto_edad <- tabla_edad %>%
filter(categoria == "Edad") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(edad)
texto_edad_val <- tabla_edad %>%
filter(categoria == "Edad") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(porc_2022) %>%
lbl_percent()
texto_edad_var <- tabla_edad %>%
filter(categoria == "Edad") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(pp_var) %>%
lbl_decimal()
texto_edad_var_pre <- tabla_edad %>%
filter(categoria == "Edad") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
mutate(pp_var_pre = (porc_2022 - porc_2019) * 100) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(pp_var_pre) %>%
lbl_decimal()
texto_edad_j <- tabla_edad %>%
filter(categoria == "Edad del jefe") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(edad)
texto_edad_val_j <- tabla_edad %>%
filter(categoria == "Edad del jefe") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(porc_2022) %>%
lbl_percent()
texto_edad_var_j <- tabla_edad %>%
filter(categoria == "Edad del jefe") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(pp_var) %>%
lbl_decimal()
```
En ese mismo año, la distribución de personas que viajaron por edad mostró una mayor proporción en el grupo etario de **`r texto_edad`** con un valor del `r texto_edad_val`, lo cual representó una variación de `r texto_edad_var` p.p. respecto del año previo y del `r texto_edad_var_pre` respecto de la prepandemia. Considerando la edad del jefe de hogar, el grupo de **`r texto_edad_j`** es el que presentó una mayor proporción de personas que realizaron al menos un viaje (`r texto_edad_val_j`), con una variación interanual de `r texto_edad_var_j` p.p.
```{r comtur4, fig.cap=glue()}
tabla_edad_f <- tabla_edad %>%
drop_na() %>%
arrange(match(edad, c("Total", "Menos de 14 años", "14 a 29 años",
"Hasta 29 años", "30 a 44 años",
"45 a 59 años", "60 años o más"))) %>%
gt(groupname_col = "categoria") %>%
cols_label(edad = "",
porc_2012 = "2012",
porc_2013 = "2013",
porc_2014 = "2014",
porc_2015 = "2015",
porc_2016 = "2016",
porc_2017 = "2017",
porc_2018 = "2018",
porc_2019 = "2019",
porc_2020 = "2020",
porc_2021 = "2021",
porc_2022 = "2022",#AGREGAR ANIO MANUAL
pp_var = glue("Var. i.a. en p.p. \n{Anio}/2021")) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
#fmt_number(columns = pp_var, decimals = 1, dec_mark = ",") %>%
gt_theme_dnmye(var_total = edad) %>%
tab_options(row_group.font.weight = "bold") %>%
tab_source_note(
source_note = md(
"**Fuente**: DNMyE en base a información de la EVyTH")
) %>%
tab_caption(caption = md(glue("Personas de un año y más que realizaron al menos un viaje en el año por edad y edad del jefe del hogar. Distribución porcentual. Años 2012-{Anio}.")))
tabla_edad_f
```
```{r}
educ <- comptur %>%
filter(anio %in% c(2012:Anio),
p006 > 18 & p006 < 66) %>%
crear_etiqueta(variables = c("nivel_ed"), drop_vars = T) %>%
mutate(nivel_ed = case_when(nivel_ed %in%
c("Post grado / maestría / doctorado incompleto o completo", "Universitario completo", "Terciario completo") ~ "Superior completa o más",
nivel_ed %in% c("Universitario incompleto","Terciario incompleto","Secundario completo") ~ "Secundaria completa - superior incompleta",
nivel_ed %in% c("Primario completo","Secundario incompleto") ~ "Primaria completa - secundaria incompleta",
nivel_ed %in% c("Primario incompleto","Sin instrucción / nunca asistió") ~ "Hasta primaria incompleta",
TRUE ~ nivel_ed)) %>%
group_by(anio, al_menos_un_viaje, nivel_ed) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, nivel_ed) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Máximo nivel educativo")
j_educ <- comptur %>%
filter(anio %in% c(2012:Anio),
p006 > 18 & p006 < 66) %>%
crear_etiqueta(variables = "j_nivel_ed") %>%
group_by(anio, al_menos_un_viaje, nivel_ed = j_nivel_ed) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, nivel_ed) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Máximo nivel educativo del jefe")
total <- comptur %>%
filter(anio %in% c(2012:Anio),
p006 > 18 & p006 < 66) %>%
group_by(anio, al_menos_un_viaje) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(nivel_ed = "Total",
categoria = "")
tabla_educ <- rbind(total, educ, j_educ) %>%
select(-c(al_menos_un_viaje, turistas)) %>%
pivot_wider(names_from = "anio", values_from = "participacion",
names_prefix = "porc_") %>%
mutate(pp_var = (porc_2022 - porc_2021) * 100) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
filter(!is.na(nivel_ed))
texto_educ <- tabla_educ %>%
filter(categoria == "Máximo nivel educativo") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(nivel_ed)
texto_educ_val <- tabla_educ %>%
filter(categoria == "Máximo nivel educativo") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(porc_2022) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
lbl_percent()
texto_educ_var_pre <- tabla_educ %>%
filter(categoria == "Máximo nivel educativo") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
mutate(pp_var_pre = (porc_2022 - porc_2019) * 100) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(pp_var_pre) %>%
lbl_decimal()
texto_educ_var <- tabla_educ %>%
filter(categoria == "Máximo nivel educativo") %>%
filter(porc_2022 == max(porc_2022, na.rm = T)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(pp_var) %>%
lbl_decimal()
texto_educ_j <- tabla_educ %>%
filter(categoria == "Máximo nivel educativo del jefe") %>%
filter(pp_var == max(pp_var, na.rm = T)) %>%
pull(nivel_ed)
texto_educ_var_j <- tabla_educ %>%
filter(categoria == "Máximo nivel educativo del jefe") %>%
filter(pp_var == max(pp_var, na.rm = T)) %>%
pull(pp_var) %>%
lbl_decimal()
```
Cuando se analizaron los viajes de las personas entre 19 y 65 años por nivel educativo se observó que a medida que aumentaba el nivel educativo, también lo hacía la proporción de personas que habían realizado al menos un viaje. Así, la categoría de **"`r texto_educ`"** tuvo la mayor proporción con un valor de `r texto_educ_val` y una variación de `r texto_educ_var` p.p. respecto del año anterior. En comparación con los valores prepandemia, este grupo disminuyó su proporción en `r texto_educ_var_pre` p.p.
Por otra parte, en el caso del nivel educativo del jefe del hogar, se destacó que el grupo **"`r texto_educ_j`"** presentó un crecimiento de `r texto_educ_var_j` p.p.
```{r comtur5, fig.cap=glue()}
tabla_educ <- tabla_educ %>%
# drop_na() %>%
# arrange(match(nivel_ed, c("Total", "Menos de 14 años", "14 a 29 años",
# "Hasta 29 años", "30 a 44 años",
# "45 a 59 años", "60 años o más"))) %>%
gt(groupname_col = "categoria") %>%
cols_label(nivel_ed = "",
porc_2012 = "2012",
porc_2013 = "2013",
porc_2014 = "2014",
porc_2015 = "2015",
porc_2016 = "2016",
porc_2017 = "2017",
porc_2018 = "2018",
porc_2019 = "2019",
porc_2020 = "2020",
porc_2021 = "2021",
porc_2022 = "2022",
pp_var = glue("Var. i.a. en p.p. \n{Anio}/2021")) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
fmt_number(columns = pp_var, decimals = 1, dec_mark = ",") %>%
gt_theme_dnmye(var_total = nivel_ed) %>%
tab_options(row_group.font.weight = "bold",
container.height = 600,
container.overflow.y = T) %>%
tab_source_note(
source_note = md(
"**Fuente**: DNMyE en base a información de la EVyTH")
) %>%
tab_caption(md(glue("Personas de 19 a 65 años que realizaron al menos un viaje en el año por nivel educativo y nivel educativo del Jefe del hogar, distribución porcentual. Años 2012-{Anio}.")))
tabla_educ
```
```{r}
cond <- comptur %>%
filter(anio %in% c(Anio),
p006 > 18 & p006 < 66) %>%
crear_etiqueta(variables = "cond_act", drop_vars = T) %>%
group_by(anio, al_menos_un_viaje, cond_act) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, cond_act) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Condición de actividad")
j_cond <- comptur %>%
filter(anio == Anio) %>%
crear_etiqueta(variables = "j_cond_act") %>%
group_by(anio, al_menos_un_viaje, cond_act = j_cond_act) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, cond_act) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(categoria = "Condición de actividad del jefe")
tabla_cond <- rbind(cond, j_cond) %>%
filter(cond_act != "Ns./ Nr.") %>%
select(c(cond_act, categoria, participacion)) %>%
mutate(cond_act = factor(cond_act, levels = c("Ocupado",
"Desocupado",
"Inactivo")))
texto_cond_cat_min <- tabla_cond %>%
filter(categoria == "Condición de actividad") %>%
filter(participacion == min(participacion)) %>%
pull(cond_act) %>%
as.character()
texto_cond_cat_max <- tabla_cond %>%
filter(categoria == "Condición de actividad") %>%
filter(participacion == max(participacion)) %>%
pull(cond_act) %>%
as.character()
texto_cond_val_min <- tabla_cond %>%
filter(categoria == "Condición de actividad") %>%
filter(participacion == min(participacion)) %>%
pull(participacion) %>%
lbl_percent()
texto_cond_val_max <- tabla_cond %>%
filter(categoria == "Condición de actividad") %>%
filter(participacion == max(participacion)) %>%
pull(participacion) %>%
lbl_percent()
jefe_max <- tabla_cond %>% filter(categoria=="Condición de actividad del jefe") %>% arrange(participacion) %>% slice(n()) %>% pull(cond_act)
jefe_max_value <- tabla_cond %>% filter(categoria=="Condición de actividad del jefe") %>% arrange(participacion) %>% slice(n()) %>% pull(participacion)
jefe_min <- tabla_cond %>% filter(categoria=="Condición de actividad del jefe") %>% arrange(participacion) %>% slice(1) %>% pull(cond_act)
jefe_min_value <- tabla_cond %>% filter(categoria=="Condición de actividad del jefe") %>% arrange(participacion) %>% slice(1) %>% pull(participacion)
```
En ese mismo rango etario y de acuerdo a la condición de actividad de las personas, el grupo que menos viajó fue el de **`r paste0(tolower(texto_cond_cat_min),"s")`** (`r texto_cond_val_min`), mientras que la mayor proporción se presentó en los **`r paste0(tolower(texto_cond_cat_max),"s")`** (`r texto_cond_val_max`). Asimismo, cuando se analozó la condición de actividad del jefe de hogar, se verificó que el grupo que menos viajó fue el de **`r paste0(tolower(jefe_min), "s")`** (`r jefe_min_value %>% lbl_percent()`), mientras que la mayor proporción se verificó en **`r paste0(tolower(jefe_max), "s")`** (`r jefe_max_value %>% lbl_percent()`).
```{r comtur6, fig.cap=glue("Personas de 19 a 65 años que realizaron al menos un viaje en el año por condición de actividad y condición de actividad del jefe del hogar. Distribución porcentual. Año {Anio}.")}
ggplot(tabla_cond) +
geom_col(aes(cond_act, participacion, fill = categoria),
position = "dodge") +
geom_label(aes(x = cond_act, y = participacion, group = categoria,
label = paste0(format(round(participacion*100, 1), decimal.mark = ","), "%")),
position = position_dodge(1), size = 2.5) +
scale_fill_dnmye() +
scale_y_percent(limits = c(0, max(tabla_cond$participacion)*1.1)) +
theme_minimal() +
theme(legend.position = "bottom",
plot.caption = element_markdown()) +
labs(x = "", y = "", fill = "", caption = md("**Fuente**: DNMyE en base a información de la EVyTH"))
```
```{r}
quintil <- comptur %>%
filter(anio %in% c(Anio, 2019,2021)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
group_by(anio, al_menos_un_viaje, quintil_pcf_visitante) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio, quintil_pcf_visitante) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(quintil_pcf_visitante = str_squish(str_extract(as_factor(quintil_pcf_visitante), "[^(]+")))
total <- comptur %>%
filter(anio %in% c(2019, 2021, Anio)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
group_by(anio, al_menos_un_viaje) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
filter(al_menos_un_viaje == 1) %>%
mutate(quintil_pcf_visitante = "Total")
tabla_quintil <- rbind(quintil, total) %>%
mutate(anio = factor(anio,
c(as.character(Anio),"2021","2019"))) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
group_by(quintil_pcf_visitante) %>%
mutate(pp_var = (participacion-lag(participacion,1 ))*100) %>%
ungroup()
```
Cuando se analizó el nivel de ingreso de las personas, se observó que a mayor ingreso, mayor la proporción de personas que viajaron. Respecto al año anterior se verificaron crecimientos en todos los quintiles, a excepción del **Quintil 1**, aunque teniendo en consideración el impacto de la pandemia en las proporciones de personas que viajaron, el quintil de mayor ingreso (**Quintil 5**) fue el que más cerca estuvo de igualar el nivel de 2019 (-0,2 p.p.).
```{r comtur7, fig.cap=glue("Personas de un año y más que realizaron al menos un viaje al año, por quintil de ingreso per cápita familiar. Distribución porcentual. Años 2019/2021/{Anio}.")}
ggplot(tabla_quintil) +
geom_col(aes(quintil_pcf_visitante, participacion, fill = anio), position = "dodge") +
geom_label(aes(x = quintil_pcf_visitante, y = participacion, group = anio,
label = paste0(format(round(participacion*100, 1), decimal.mark = ","), "%")),
position = position_dodge(1), size = 2.5, hjust = -0.1) +
scale_fill_dnmye() +
scale_y_percent(limits = c(0, max(tabla_quintil$participacion)*1.2)) +
coord_flip() +
theme_minimal() +
theme(legend.position = "right",
plot.caption = element_markdown()) +
labs(x = "", y = "", fill = "", caption = md("**Fuente**: DNMyE en base a información de la EVyTH"))
```
```{r}
no_viaje <- comptur %>%
filter(anio == Anio,
p006 > 18 & p006 < 66,
al_menos_un_viaje == 2,
razon_no_viaje != 7) %>%
group_by(razon_no_viaje) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
mutate(participacion = turistas/sum(turistas),
razon_no_viaje = fct_reorder(str_wrap(as.character(as_factor(razon_no_viaje)), 20), participacion)) %>%
filter(participacion > 0.01)
texto_cat <- no_viaje %>%
filter(participacion == max(participacion)) %>%
pull(razon_no_viaje) %>%
as.character()
texto_val <- no_viaje %>%
filter(participacion == max(participacion)) %>%
pull(participacion) %>%
lbl_percent()
```
El principal motivo de no viaje de las personas durante el año `r as.character(Anio)` fue la **`r tolower(texto_cat)`**, el cual representó el `r texto_val`.
```{r comtur8, fig.cap=glue(" Personas de 19 a 65 años que no realizaron viajes en el año por motivo principal. Distribución porcentual. Año {Anio}.")}
ggplot(no_viaje, aes(razon_no_viaje, participacion)) +
geom_col(fill = dnmye_colores("cian")) +
geom_label(aes(label = paste0(format(round(participacion*100, 1), decimal.mark = ","), "%")), size = 2.5, hjust = -0.1) +
scale_y_percent(limits = c(0, max(no_viaje$participacion)*1.2)) +
coord_flip() +
theme_minimal() +
theme(legend.position = "right",
plot.caption = element_markdown()) +
labs(x = "", y = "", fill = "", caption = md("**Fuente**: DNMyE en base a información de la EVyTH"))
```
```{r}
no_viaje <- comptur %>%
filter(anio %in% c(2012:Anio),
p006 > 18 & p006 < 66,
al_menos_un_viaje == 2,
razon_no_viaje != 7) %>%
group_by(anio, razon_no_viaje) %>%
summarise(turistas = sum(pondera, na.rm = T)) %>%
ungroup() %>%
group_by(anio) %>%
mutate(participacion = turistas/sum(turistas)) %>%
ungroup() %>%
mutate(razon_no_viaje = fct_reorder(str_wrap(as.character(as_factor(razon_no_viaje)), 20), participacion))
tabla_nv <- no_viaje %>%
select(-turistas) %>%
pivot_wider(names_from = "anio", values_from = "participacion",
names_prefix = "porc_") %>%
mutate(pp_var_2021 = (porc_2022 - porc_2021) * 100)#MODIFICAR MANUAL CUANDO CAMBIA ANIO
texto_var_cat21 <- tabla_nv %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
filter(pp_var_2021 == max(pp_var_2021)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(razon_no_viaje) %>%
as.character()
texto_var_val21 <- tabla_nv %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
filter(pp_var_2021 == max(pp_var_2021)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
pull(pp_var_2021) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
lbl_decimal()
# texto_var_cat15 <- tabla_nv %>%
# filter(pp_var_2015 == max(pp_var_2015)) %>%
# pull(razon_no_viaje) %>%
# as.character()
#
# texto_var_val15 <- tabla_nv %>%
# filter(pp_var_2015 == max(pp_var_2015)) %>%
# pull(pp_var_2015) %>%
# lbl_decimal()
```
Respecto del año previo, la razón de no viaje que más creció en proporción fue **`r texto_var_cat21`** (`r texto_var_val21` p.p.).
```{r comtur9}
tabla_nv_gt <- tabla_nv %>%
gt() %>%
cols_label(razon_no_viaje = "",
porc_2012 = "2012",
porc_2013 = "2013",
porc_2014 = "2014",
porc_2015 = "2015",
porc_2016 = "2016",
porc_2017 = "2017",
porc_2018 = "2018",
porc_2019 = "2019",
porc_2020 = "2020",
porc_2021 = "2021",
porc_2022 = "2022", #AGREGAR NUEVO ANIO MANUAL
pp_var_2021 = glue("Var. i.a. en p.p. \n{Anio}/2021")) %>%#MODIFICAR MANUAL CUANDO CAMBIA ANIO
fmt_number(columns = c(pp_var_2021), decimals = 1, dec_mark = ",") %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
gt_theme_dnmye() %>%
tab_source_note(
source_note = md(
"**Fuente**: DNMyE en base a información de la EVyTH")
) %>%
tab_caption(caption = md(glue("Personas de 19 a 65 años que no realizaron viajes al año según motivo principal. Distribución porcentual. Años 2012-{Anio}.")))
tabla_nv_gt
```
## Resultados Turismo Interno
En esta sección, se presentan los principales indicadores del turismo interno, entre ellos, la cantidad de argentinos turistas, excursionistas, visitantes que recorrieron el país durante el año `r as.character(Anio)`; también la cantidad de pernoctes y el gasto turístico asociado a dicho movimiento, su distribución temporal y regional. Asimismo se analizan las características de sus viajes: origen de los viajeros, destino, motivo, alojamiento, transporte, organización del viaje, actividades turísticas, así como comparaciones con los resultados de los años anteriores.
**Turismo Interno:**
```{r}
evyth <- read_file_srv("/srv/DataDNMYE/evyth/base_trabajo/evyth_base_de_trabajo.parquet") %>%
filter(anio %in% c(Anio, 2021, 2019, 2015))#MODIFICAR MANUAL CUANDO CAMBIA ANIO
```
```{r}
data_graph1 <- evyth %>%
filter(anio == Anio, tipo_visitante == 1) %>%
group_by(arg_o_ext, trimestre) %>%
summarise(turistas = sum(pondera)) %>%
ungroup() %>%
group_by(trimestre) %>%
mutate(total = sum(turistas)) %>%
ungroup() %>%
mutate(participacion = turistas/total,
arg_o_ext = case_when(arg_o_ext == 1 ~ "Argentina",
TRUE ~ "Exterior"),
trimestre = paste0(trimestre, "° Trim"))
grafico1 <- data_graph1 %>%
ggplot() +
geom_col(aes(trimestre, participacion, fill = arg_o_ext),
position="fill", width = 0.8) +
geom_label(aes(x = trimestre, y = participacion, group = arg_o_ext,
label = paste0(format(round(participacion*100, 1), decimal.mark = ","), "%")),
position = position_stack(vjust = 0.9), size = 2.5) +
scale_fill_dnmye() +
scale_y_percent() +
theme_minimal() +
theme(legend.position = "bottom",
plot.caption = element_markdown()) +
labs(x = "", y = "", fill = "", caption = md("**Fuente**: DNMyE en base a información de la EVyTH"))
#VARIABLES PARA TEXTO
trim_max_arg <- data_graph1 %>% filter(arg_o_ext=="Argentina") %>% arrange(participacion) %>% slice(n()) %>% pull (trimestre)
trim_max_arg_value <- data_graph1 %>% filter(arg_o_ext=="Argentina") %>% arrange(participacion) %>% slice(n()) %>% pull (participacion)
trim_max_ext <- data_graph1 %>% filter(arg_o_ext=="Exterior") %>% arrange(participacion) %>% slice(n()) %>% pull (trimestre)
trim_max_ext_value <- data_graph1 %>% filter(arg_o_ext=="Exterior") %>% arrange(participacion) %>% slice(n()) %>% pull (participacion)
```
Los resultados del año `r as.character(Anio)` demostraron que los turistas viajaron más por Argentina durante los cuatro trimestres, en comparación con otros años, sin embargo lo hicieron en mayor proporción durante el **`r trim_max_arg`** (`r trim_max_arg_value %>% lbl_percent(decimales=1)`), mientras que al exterior viajaron en mayor proporción en el **`r trim_max_ext`** (`r trim_max_ext_value %>% lbl_percent()`).
```{r evyth1, fig.cap=glue("Turistas según destino principal por trimestre. Distribución porcentual. Año {Anio}.")}
grafico1
```
```{r}
evol_graph <- read_file_srv("/srv/DataDNMYE/evyth/base_trabajo/evyth_base_de_trabajo.parquet") %>%
filter(arg_o_ext == 1) %>%
group_by(anio,tipo_visitante) %>%
summarise(turistas = sum(pondera)) %>%
ungroup()
```
A continuación se visualiza la serie anual de turistas que viajaron por Argentina, la cual muestra el impacto negativo que tuvo la pandemia en la cantidad de turistas, seguido de una fuerte recuperación: hubo una caída interanual del 54,1% en el año 2020, respecto del 2019, seguida de un aumento del 45,5% del 2020 al 2021, y del 73,2% del 2021 al 2022.
```{r evyth12, fig.cap=glue("Evolución de turistas que viajaron por Argentina. En millones. Años 2012-{Anio}")}
evol_graph %>%
filter(anio %in% 2012:Anio, tipo_visitante == 1) %>%
mutate(turistas = turistas/1e6) %>%
#crear_etiqueta("tipo_visitante") %>%
ggplot(aes(anio, turistas, group = tipo_visitante)) +
geom_line(size = 0.8, show.legend = F,color = dnmye_colores("purpura")) +
geom_point(size = 2, show.legend = F,color = dnmye_colores("purpura")) +
geom_text(aes(label = lbl_decimal(turistas,1)), size = 2.5, vjust = -0.8) +
scale_x_continuous(breaks = c(2012:Anio)) +
scale_y_continuous(limits = c(0, max(evol_graph$turistas, na.rm = T)*1.01/1e6)) +
labs(x = "", y = "millones de turistas") +
theme_minimal()
```
```{r}
evyth <- evyth %>%
filter(arg_o_ext == 1)
data_tabla1 <- evyth %>%
crear_etiqueta("tipo_visitante") %>%
group_by(anio, tipo_visitante) %>%
summarise(Total = sum(pondera, na.rm = T),
Gasto = sum(pondera * gasto_pc, na.rm = T),
Pernoctes = sum(pondera * px07, na.rm = T),
Estadia_prom = Pernoctes/Total,
Gasto_prom = Gasto/Total,
Gasto_diario = Gasto/Pernoctes) %>%
ungroup() %>%
mutate(Total = Total/1000,
Pernoctes = Pernoctes/1000,
Gasto = Gasto/1000000) %>%
pivot_longer(cols = c("Total","Gasto","Pernoctes","Estadia_prom","Gasto_prom","Gasto_diario"),
names_to = "categoria", values_to = "cantidad") %>%
pivot_wider(names_from = "anio", values_from = "cantidad") %>%
filter(!(tipo_visitante == "Excursionista" &
categoria %in% c("Pernoctes","Estadia_prom","Gasto_diario")))
total <- data_tabla1 %>%
group_by(categoria) %>%
summarise(`2015` = sum(`2015`),
`2019` = sum(`2019`),
`2021` = sum(`2021`),#MODIFICAR MANUAL CUANDO CAMBIA ANIO
`2022` = sum(`2022`)) %>% #MODIFICAR MANUAL CUANDO CAMBIA ANIO
filter(categoria %in% c("Total","Gasto")) %>%
mutate(tipo_visitante = "Visitantes")
tabla1 <- data_tabla1 %>%
rbind(total) %>%
filter(!(tipo_visitante %in% c("Excursionista","Turista") &
categoria %in% c("Gasto")))
tabla1 <- tabla1[c(3,1,9,5,4,8,6,2,7),]
tabla1 <- tabla1 %>%
mutate(unidad = case_when(
categoria == "Total" ~ "miles",
categoria == "Estadia_prom" ~ "noches",
categoria == "Pernoctes" ~ "miles de noches",
categoria == "Gasto" ~ "millones de $",
TRUE ~ "$"
),
categoria = case_when(
tipo_visitante == "Turista" & categoria == "Total" ~ "Turistas",
tipo_visitante == "Turista" & categoria == "Estadia_prom" ~ "Estadía promedio",
tipo_visitante == "Turista" & categoria == "Gasto_prom" ~ "Gasto promedio por turista",
tipo_visitante == "Turista" & categoria == "Gasto_diario" ~ "Gasto diario promedio por turista",
tipo_visitante == "Excursionista" & categoria == "Total" ~ "Excursionistas",
tipo_visitante == "Excursionista" & categoria == "Gasto_prom" ~ "Gasto promedio por excursionista",
tipo_visitante == "Visitantes" & categoria == "Total" ~ "Visitantes (turistas + excursionistas)",
tipo_visitante == "Visitantes" & categoria == "Gasto" ~ "Gasto visitantes",
TRUE ~ categoria
),
var_ia = (`2022`/`2021`)-1,#MODIFICAR MANUAL CUANDO CAMBIA ANIO
var_ia19 = (`2022`/`2019`)-1)#MODIFICAR MANUAL CUANDO CAMBIA ANIO
tabla1_def <- tabla1 %>%
select(-tipo_visitante) %>%
gt() %>%
cols_label(
categoria = "",
unidad = "",
var_ia = "Var. i.a. % 2021",#MODIFICAR MANUAL CUANDO CAMBIA ANIO
var_ia19 = "Var. i.a. % 2019"
) %>%
tab_source_note(
source_note = md(
"**Fuente**: DNMyE en base a información de la EVyTH")
) %>%
fmt_number(columns = c(`2015`:`2021`), rows = categoria == "Estadía promedio",
decimals = 1, dec_mark = ",") %>%
gt_theme_dnmye() %>%
tab_caption(caption = md(glue("Visitantes, estadía promedio, pernoctes y gasto con destino en Argentina por año. Años 2015/2019/2021/{Anio}")))#MODIFICAR MANUAL CUANDO CAMBIA ANIO
#VARIABLES PARA TEXTO
# var_ia_min <- tabla1 %>% arrange(var_ia) %>% slice(1) %>% pull (categoria)
# var_ia_min_value <- tabla1 %>% arrange(var_ia) %>% slice(1) %>% pull (var_ia)
#
# var_ia_max <- tabla1 %>% arrange(-var_ia) %>% slice(1) %>% pull (categoria)
# var_ia_max_value <- tabla1 %>% arrange(-var_ia) %>% slice(1) %>% pull (var_ia)
#
# var_ia_max_2 <- tabla1 %>% arrange(-var_ia) %>% slice(2) %>% pull (categoria)
# var_ia_max_value_2 <- tabla1 %>% arrange(-var_ia) %>% slice(2) %>% pull (var_ia)
var_ia_gasto_vis_value <- tabla1 %>% filter(categoria == "Gasto visitantes") %>% pull(var_ia)
var_ia_gasto_tur_value <- tabla1 %>% filter(categoria == "Gasto promedio por turista") %>% pull(var_ia)
var_ia_estadia_value <- tabla1 %>% filter(categoria == "Estadía promedio") %>% pull(var_ia)
var_ia_gasto_vis_value19 <- tabla1 %>% filter(categoria == "Gasto visitantes") %>% pull(var_ia19)
var_ia_gasto_tur_value19 <- tabla1 %>% filter(categoria == "Gasto promedio por turista") %>% pull(var_ia19)
var_ia_estadia_value19 <- tabla1 %>% filter(categoria == "Estadía promedio") %>% pull(var_ia19)
#En el año `r as.character(Anio)`, se encontró que **`r var_ia_max`** fue la variable con mayor variación interanual (`r var_ia_max_value %>% lbl_percent()`), seguida de `r var_ia_max_2` (`r var_ia_max_value_2 %>% lbl_percent()`), es decir que ambas superaron el doble del valor obtenido en 2020. Mientras que la variable `r var_ia_min` disminuyó un `r (-1*var_ia_min_value) %>% lbl_percent (decimales=0)`.
```
```{r}
data_var <- evyth %>%
filter(tipo_visitante == 1, anio >= 2021)#MODIFICAR MANUAL CUANDO CAMBIA ANIO
evyth <- evyth %>%
filter(tipo_visitante == 1, anio == Anio)
data_destino <- evyth %>%
#filter(tipo_visitante == 1, anio == Anio) %>%
crear_etiqueta("region_destino") %>%
group_by(orig_dest = region_destino) %>%
summarise(Turistas = sum(pondera, na.rm = T),
Pernoctes = sum(pondera * px07, na.rm = T),
Estadia_prom = Pernoctes/Turistas,
Gasto = sum(pondera * gasto_pc, na.rm = T),
Gasto_prom = Gasto/Turistas,
Gasto_diario = Gasto/Pernoctes) %>%
ungroup() %>%
mutate(Turistas = Turistas/sum(Turistas),
Pernoctes = Pernoctes/sum(Pernoctes),
Gasto = Gasto/sum(Gasto),
region = "Región de destino")
data_origen <- evyth %>%
#filter(tipo_visitante == 1, anio == Anio) %>%
crear_etiqueta("region_origen") %>%
group_by(orig_dest = region_origen) %>%
summarise(Turistas = sum(pondera, na.rm = T),
Pernoctes = sum(pondera * px07, na.rm = T),
Estadia_prom = Pernoctes/Turistas,
Gasto = sum(pondera * gasto_pc, na.rm = T),
Gasto_prom = Gasto/Turistas,
Gasto_diario = Gasto/Pernoctes) %>%
ungroup() %>%
mutate(Turistas = Turistas/sum(Turistas),
Pernoctes = Pernoctes/sum(Pernoctes),