-
Notifications
You must be signed in to change notification settings - Fork 0
/
_soporte.R
159 lines (120 loc) · 3.96 KB
/
_soporte.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
# browseURL("https://nrennie.rbind.io/blog/script-templates-r/")
# mensaje -----------------------------------------------------------------
mensaje <- function(x) {
cat(
crayon::bgBlack(
crayon::white(
glue::glue(
"\n\n--- {x} ---\n\n\n")
)
)
)
}
# paquetes ----------------------------------------------------------------
paquetes <- function() {
purrr::map(
c("glue", "ggtext", "showtext", "tidyverse"),
~suppressPackageStartupMessages(
library(
package = .x,
character.only = TRUE,
warn.conflicts = FALSE,
quietly = TRUE,
verbose = FALSE
)
)
)
}
paquetes()
# nueva semana ------------------------------------------------------------
# función que crea una nueva carpeta con un script para el procesamiento
# de los datos de {tidytuesday} de la semana de interés
nueva_semana <- function(semana_numero, año = 2025) {
semana_numero <<- semana_numero
# nombre de la carpeta a crear
if (semana_numero <= 9) {
semana_carpeta <- glue::glue("{año}/s0{semana_numero}")
} else {
semana_carpeta <- glue::glue("{año}/s{semana_numero}")
}
# archivo .R
new_file <- file.path(semana_carpeta, "script.R")
# verifico que la carpeta de la semana no exista
semanas_ok <- list.files(glue::glue("{año}")) |>
stringr::str_remove("s") |>
as.numeric()
if (length(semanas_ok) != 0 & mean(semanas_ok == semana_numero) != 0) {
mensaje("Semana ya creada")
system(glue::glue("open {new_file}"))
stop()
}
# verifico que el número de semana sea correcto
if (semana_numero %% as.integer(semana_numero) != 0) {
stop(
mensaje("Número de semana en formato incorrecto")
)
}
# creo directorio
dir.create(semana_carpeta, recursive = TRUE)
if (!file.exists(new_file)) {
file.create(new_file)
# leo el contenido de la plantilla
r_txt <- readLines("_plantilla.R")
# remplazo el año, nombre de carpeta y semana
r_txt <- gsub(
pattern = "año",
replacement = año,
x = r_txt
)
r_txt <- gsub(
pattern = "semana_carpeta",
replacement = semana_carpeta,
x = r_txt
)
r_txt <- gsub(
pattern = "semana_numero",
replacement = semana_numero,
x = r_txt
)
# creo el nuevo script
writeLines(r_txt, con = new_file)
mensaje(glue::glue("Script creado para semana {semana_numero}"))
}
system(glue::glue("open {paste0(getwd(), '/', new_file)}"))
source(new_file)
}
# caption -----------------------------------------------------------------
caption <- function(fuente1, fuente2 = NULL, col) {
if (is.null(fuente2)) {
fuente <- glue(
"Datos: <span style='color:{col};'><span style='font-family:jet;'>",
"{{<b>tidytuesdayR</b>}}</span> semana {semana_numero}, ",
"<b>{fuente1}</b>.</span>"
)
} else {
fuente <- glue(
"Datos: <span style='color:{col};'><span style='font-family:jet;'>",
"{{<b>tidytuesdayR</b>}}</span> semana {semana_numero}, ",
"<b>{fuente1}</b>, {fuente2}.</span>"
)
}
autor <- glue("<span style='color:{col};'>**Víctor Gauto**</span>")
icon_twitter <- glue("<span style='font-family:jet;'></span>")
icon_instagram <- glue("<span style='font-family:jet;'></span>")
icon_github <- glue("<span style='font-family:jet;'></span>")
icon_mastodon <- glue("<span style='font-family:jet;'>󰫑</span>")
icon_bsky <- glue("<span style='font-family:jet;'></span>")
usuario <- glue("<span style='color:{col};'>**vhgauto**</span>")
sep <- glue("**|**")
mi_caption <- glue(
"{fuente}<br>{autor} {sep} {icon_github} {icon_twitter} {icon_instagram} ",
"{icon_mastodon} {icon_bsky} {usuario}"
)
return(mi_caption)
}
mensaje("Paquetes y funciones cargadas")
mensaje(
glue::glue(
"Usar {crayon::bold('nueva_semana()')} para iniciar el procesamiento"
)
)