-
Notifications
You must be signed in to change notification settings - Fork 0
/
script.R
268 lines (231 loc) · 7.5 KB
/
script.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
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
# paquetes ----------------------------------------------------------------
library(glue)
library(ggtext)
library(showtext)
library(patchwork)
library(tidyverse)
# fuente ------------------------------------------------------------------
# colores
c1 <- "black"
c2 <- "red"
c3 <- alpha("red", .6)
c4 <- "white"
# fuente: Ubuntu
font_add(
family = "ubuntu",
regular = "fuente/Ubuntu-Regular.ttf",
bold = "fuente/Ubuntu-Bold.ttf",
italic = "fuente/Ubuntu-Italic.ttf")
# fuente: Victor
font_add(
family = "victor",
regular = "fuente/VictorMono-ExtraLight.ttf",
bold = "fuente/VictorMono-VariableFont_wght.ttf",
italic = "fuente/VictorMono-ExtraLightItalic.ttf")
# fuente: Bebas Neue
font_add(
family = "bebas",
regular = "fuente/BebasNeue-Regular.ttf")
# título
font_add_google(
name = "Metamorphous",
family = "metamorphous")
# íconos
font_add("fa-brands", "icon/Font Awesome 6 Brands-Regular-400.otf")
showtext_auto()
showtext_opts(dpi = 300)
# caption
fuente <- glue(
"Datos: <span style='color:{c2};'><span style='font-family:mono;'>",
"{{<b>tidytuesdayR</b>}}</span> semana {7}. ",
"National Retail Federation.</span>")
autor <- glue("<span style='color:{c2};'>**Víctor Gauto**</span>")
icon_twitter <- glue("<span style='font-family:fa-brands;'></span>")
icon_github <- glue("<span style='font-family:fa-brands;'></span>")
icon_mastodon <- glue("<span style='font-family:fa-brands;'></span>")
usuario <- glue("<span style='color:{c2};'>**vhgauto**</span>")
sep <- glue("**|**")
dolar <- glue("<span style='color:{c2};'>**$** = USD</span>")
mi_caption <- glue(
"{dolar} {sep} {fuente}<br>{autor} {sep} {icon_github} {icon_twitter}
{icon_mastodon} {usuario}")
# datos -------------------------------------------------------------------
tuesdata <- tidytuesdayR::tt_load(2024, 7)
historical_spending <- tuesdata$historical_spending
# me interesa ver la evolución de dinero dedicado a cada producto, y el
# porcentaje de personas que festeja San Valentín
# categorías, vector en inglés
cc_vec <- historical_spending |>
janitor::clean_names() |>
pivot_longer(
cols = -year,
names_to = "categ",
values_to = "valor"
) |>
rename(año = year) |>
distinct(categ) |>
pull()
# reordeno las categorías
cc_vec <- c(cc_vec[2:5], cc_vec[1], cc_vec[6:9])
# traducción de las categorías
cc_trad <- c(
"Por persona", "Golosinas", "Flores", "Joyas",
"Personas que festejan\nSan Valentín",
"Tarjeta de felicitaciones", "Salida de noche", "Ropa",
"Tarjeta de regalos")
names(cc_trad) <- cc_vec
# agrego las traducciones y cambio a tabla larga
d <- historical_spending |>
janitor::clean_names() |>
pivot_longer(
cols = -year,
names_to = "categ",
values_to = "valor"
) |>
rename(año = year) |>
mutate(cate = cc_trad[categ]) |>
select(-categ)
# figura ------------------------------------------------------------------
# eje vertical, por categoría
eje_y <- list(
"Personas que festejan\nSan Valentín" =
scale_y_continuous(
limits = c(50, 62), breaks = seq(50, 62, 2),
labels = scales::label_number(suffix = "%")),
"Por persona" =
scale_y_continuous(
limits = c(100, 200), breaks = seq(100, 200, 25),
labels = scales::label_dollar()),
"Golosinas" =
scale_y_continuous(
limits = c(5, 20), breaks = seq(5, 20, 5),
labels = scales::label_dollar()),
"Flores" =
scale_y_continuous(
limits = c(12, 18), breaks = seq(12, 18, 1),
labels = scales::label_dollar()),
"Joyas" =
scale_y_continuous(
limits = c(20, 50), breaks = seq(20, 50, 5),
labels = scales::label_dollar()),
"Tarjeta de felicitaciones" =
scale_y_continuous(
limits = c(5, 10), breaks = seq(5, 10, 1),
labels = scales::label_dollar()),
"Salida de noche" =
scale_y_continuous(
limits = c(20, 35), breaks = seq(20, 35, 5),
labels = scales::label_dollar()),
"Ropa" =
scale_y_continuous(
limits = c(10, 25), breaks = seq(10, 25, 5),
labels = scales::label_dollar()),
"Tarjeta de regalos" =
scale_y_continuous(
limits = c(5, 20), breaks = seq(5, 20, 5),
labels = scales::label_dollar())
)
# colores, por categoría
# elimino un color, amarillento, no queda bien en la figura final
paleta_colores <- MoMAColors::moma.colors(palette_name = "Klein", n = 10)
co <- paleta_colores[paleta_colores != "#f9c000"]
names(co) <- cc_trad
# colores de fondo, por categoría
co2 <- c(
"#FFEDF0", "#EEF5F6", "#FCF1E7", "#F3F7EA", "#000000", "#F2F7F3", "#F2E8EA",
"#EAE9ED", "#F9EAE6"
)
names(co2) <- cc_trad
# título y subtítulo
mi_title <- "Día de los Enamorados"
mi_subtitle <- glue(
"Cada vez menos parejas festejan el **14 de febrero**.<br>",
"Pero quienes sí lo hacen, gastan más."
)
# función que genera una figura p/c categoría
# el cambio en el tiempo de personas que festejan San Valentín tiene un color
# diferente del resto, y se ubica en el medio
f_gg <- function(x) {
# datos filtrados
tbl <- filter(d, cate == x)
# eje vertical
eje_y_break <- eje_y[[x]]
# colores y ancho de línea del contorno
color_fondo <- co2[x]
color_linea <- co[x]
color_eje <- co[x]
color_titulo <- co[x]
color_punto <- alpha(co[x], .7)
color_borde <- co[x]
linea <- 2
# específicos de esta categoría
if (x == "Personas que festejan\nSan Valentín") {
color_fondo <- c1
color_linea <- c2
color_eje <- c4
color_titulo <- c2
color_punto <- c3
color_borde <- c2
linea <- 5
}
# figura
g <- ggplot(tbl, aes(año, valor)) +
geom_smooth(
se = FALSE, formula = y ~ x, method = loess, color = color_linea,
linewidth = 2) +
geom_point(color = color_punto, size = 1, shape = 19) +
scale_x_continuous(
labels = c(2010, 2015, 2020),
breaks = c(2010, 2015, 2020),
limits = c(2009.5, 2022.5)) +
eje_y_break +
coord_cartesian(clip = "off", expand = FALSE) +
labs(x = NULL, y = NULL, title = x) +
theme_minimal() +
theme(
aspect.ratio = 1,
plot.margin = margin(10, 10, 10, 10),
plot.background = element_rect(
fill = color_fondo, color = color_borde, linewidth = linea),
plot.title.position = "plot",
plot.title = element_text(
family = "ubuntu", color = color_titulo, margin = margin(b = 20),
size = 20, hjust = .5),
panel.grid.minor = element_blank(),
panel.grid.major = element_line(linewidth = .2, color = c4),
axis.text.x = element_text(
family = "bebas", color = color_eje, size = 22),
axis.text.y = element_text(
family = "victor", color = color_eje, vjust = 0, size = 12)
)
return(g)
}
# lista con todas las figuras
gg_lista <- map(cc_trad, f_gg)
# figura
g <- wrap_plots(gg_lista, ncol = 3) +
plot_annotation(
title = mi_title,
subtitle = mi_subtitle,
caption = mi_caption,
theme = theme(
plot.margin = margin(t = 15, r = 13.6, l = 13.6, b = 5),
plot.background = element_rect(fill = c1, color = c3, linewidth = 3),
plot.title = element_text(
family = "metamorphous", size = 60, hjust = .5, color = c2),
plot.subtitle = element_markdown(
family = "ubuntu", size = 20, hjust = .5, color = c2,
lineheight = unit(1.2, "line")),
plot.caption = element_markdown(family = "ubuntu", size = 15, color = c3),
panel.background = element_rect(fill = c4)
)
)
# guardo
ggsave(
plot = g,
filename = "2024/s07/viz.png",
width = 30,
height = 39,
units = "cm")
# abro
browseURL("2024/s07/viz.png")