forked from dnme-minturdep/turismo_internacional
-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.R
152 lines (117 loc) · 5.9 KB
/
global.R
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
library(tidyverse)
library(glue)
library(lubridate)
library(data.table)
library(shiny)
library(plotly)
library(waiter)
library(shinycssloaders)
# language en DT::
options(DT.options = list(language = list(url = '//cdn.datatables.net/plug-ins/1.10.11/i18n/Spanish.json')))
# datos
datos <- readRDS("/srv/DataDNMYE/turismo_internacional/turismo_internacional_pais.rds")
datos <- datos %>%
rename(year = 'anio') %>%
mutate(casos = str_replace_all(string = casos_ponderados,
pattern = ",", replacement = "." ),
casos = as.numeric(casos),
paso_publ = str_replace_all(paso_publ, "Aero ", "Aeropuerto ")
)
# matcheo ruta natual
ruta <- readRDS("pasos_rutas.RDS")
ruta <- ruta %>%
mutate (name = gsub("Ruta de las ", "", name),
name = gsub("Ruta de la ", "", name),
name = gsub("Ruta de los ", "", name),
name = gsub("Ruta del ", "", name),
name = gsub("la ", "", name),
name = gsub("Los ", "", name)) %>%
rename(ruta_natural =name) %>%
select(paso_publ,ruta_natural)
datos <- left_join(datos,ruta)
##DATA PARA GRAFICO 1
#data por pais_agrupado y destino
data_graficos <- datos [, .(turistas = sum(casos)),
by = .(year, mes, pais_agrupado, destino_agrup,
turismo_internac)]
#completo meses faltantes.
data_graficos <- data.table(complete (data_graficos,
expand(data_graficos, year, mes,
nesting(destino_agrup,
pais_agrupado,
turismo_internac)),
fill = list(turistas = 0)))
# elimino meses posteriores al ultimo, que se completaron por nesting.
mes_ult_nro <- as_tibble(datos[nrow(datos),2])
year_ult <- as_tibble(datos[nrow(datos),1])
datos_grafico1 <- data_graficos %>%
filter ((year < as.numeric(year_ult)) | (year == as.numeric(year_ult)
& mes <= as.numeric(mes_ult_nro))) %>%
mutate (periodo = dmy(as.character(glue::glue("01/{mes}/{year}"))))%>%
group_by(periodo, turismo_internac) %>%
summarise(turistas = sum(turistas)) %>%
mutate (turistas= (round(turistas))) %>%
rename (turismo = turismo_internac)
## DATOS PARA TABLA:
#mes de numero a texto.
datos <- datos[, mes := .(fcase(mes == 1 ,"Enero", mes == 2 ,"Febrero",
mes == 3 ,"Marzo", mes == 4 ,"Abril",
mes == 5 ,"Mayo", mes == 6 ,"Junio",
mes == 7 ,"Julio", mes == 8 ,"Agosto",
mes == 9 ,"Septiembre", mes == 10 ,"Octubre",
mes == 11 ,"Noviembre", mes == 12 ,"Diciembre"))]
Mes_ult <- as_tibble(datos[nrow(datos),2])
#reordeno niveles
datos$mes<- factor(datos$mes, levels = c("Enero", "Febrero", "Marzo", "Abril",
"Mayo", "Junio", "Julio", "Agosto",
"Septiembre", "Octubre", "Noviembre",
"Diciembre"),
ordered = TRUE)
## RECEPTIVO
data_receptivo <- datos[turismo_internac == "Receptivo", ]
data_receptivo <- data_receptivo[, .(turistas = sum(casos)),
by = .(year, mes, via, pais_agrupado, pais,
paso_publ, prov, limita, ruta_natural)]
#### EMISIVO
data_emisivo <- datos[turismo_internac == "Emisivo", ]
data_emisivo <- data_emisivo[, .(turistas = sum(casos)),
by = .(year, mes, via, destino_agrup, pais,
paso_publ, prov, limita)]
# GRAFICO. (lo pongo al final porque toma dato de Mes_ult en texto)
#color
cols_arg2 <- c("#EE3D8F", # "(rosa)"
"#50B8B1", # celeste "
"#F7941E", # naranja
"FFD100", #amarillo
"#D7DF23", #verde amarillo
"#9283BE") #violeta
#saco notacion cientifica
options(scipen = 999)
grafico_1 <- ggplot(datos_grafico1, aes(periodo, turistas, colour = turismo, group =1, text = paste('Fecha:', format(periodo,"%b%y"),
'<br>Viajes:',format(turistas,big.mark="."),
'<br>Turismo:',turismo)))+
geom_hline(yintercept = 0, color = "grey", alpha =0.7, size = 0.5) +
geom_line(size = 1.2 , alpha = 0.8) +
geom_point(size = 2.0, alpha = 0.8)+
scale_color_manual(values = c(cols_arg2[1], cols_arg2[6])) +
scale_x_date(date_breaks = "1 months", date_labels = "%b%y", expand = c(0,10))+
scale_y_continuous(breaks = seq(min(datos_grafico1$turistas), max(datos_grafico1$turistas), by = 200000),
labels = scales::number_format(big.mark = ".", decimal.mark = ",")) +
theme_minimal()+
theme(legend.position = "bottom",
axis.text.x =element_text (size =12, angle=90),
axis.text.y = element_text(size = 12),
legend.text = element_text (size =12),
plot.caption = element_text (size =12, hjust = 0.0)) +
labs(title = "EVOLUCIÓN MENSUAL DEL TURISMO INTERNACIONAL",
subtitle = glue ("Emisivo y receptivo \n Enero 2016-{Mes_ult}-2021"),
y = "",
x = "",
color= "",
caption = "Fuente: Dirección Nacional de Mercados y Estadistica, Ministerio de Turismo y Deportes" )
fig1 <- ggplotly(grafico_1, tooltip = "text") %>%
layout(legend = list(orientation = "h", x = 0.4, y = -0.6))
loading_screen <- tagList(
h3("Cargando...", style = "color:gray;"),
img(src = "https://tableros.yvera.tur.ar/recursos/logo_mintur_color.png", height = "200px")
)