-
Notifications
You must be signed in to change notification settings - Fork 0
/
99_genera_pdf_eda.R
72 lines (49 loc) · 2.12 KB
/
99_genera_pdf_eda.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
library(formularios11F)
library(rmarkdown)
# Configuración
config <- leer_config("config/config.json")
DIR_EDA_LOCAL <- file.path(rprojroot::find_rstudio_root_file(), "data", "eda")
DIR_EDA_DRIVE <- config$ids_googledrive$carpeta_eda
ID_SHEET_SOLICITUDES_LIMPIO <- config$ids_googledrive$solicitudes$limpio
ID_SHEET_SOLICITUDES_RESTANTES <- config$ids_googledrive$solicitudes$restantes
ID_SHEET_CONTACTOS_LIMPIO <- config$ids_googledrive$contactos$limpio
ID_SHEET_CONTACTOS_ENVIADO <- config$ids_googledrive$contactos$enviado
ID_SHEET_CONCERTADAS_LIMPIO <- config$ids_googledrive$concertadas$limpio
ID_SHEET_ACTIVIDADES_LIMPIO <- config$ids_googledrive$actividades$limpio
# Solicitudes charlas
rmarkdown::render(
input = "templates/eda/resumen_solicitadas.Rmd",
params = list(id_sheet = ID_SHEET_SOLICITUDES_LIMPIO),
output_file = "resumen_solicitadas.pdf",
output_dir = DIR_EDA_LOCAL,
quiet = TRUE
)
upload_file_to_drive(file.path(DIR_EDA_LOCAL, "resumen_solicitadas.pdf"), DIR_EDA_DRIVE)
# Contactos con los centros para concertar una charla
rmarkdown::render(
input = "templates/eda/resumen_contactos.Rmd",
params = list(id_sheet_limpios = ID_SHEET_CONTACTOS_LIMPIO,
id_sheet_enviado = ID_SHEET_CONTACTOS_ENVIADO),
output_file = "resumen_contactos.pdf",
output_dir = DIR_EDA_LOCAL,
quiet = TRUE
)
upload_file_to_drive(file.path(DIR_EDA_LOCAL, "resumen_contactos.pdf"), DIR_EDA_DRIVE)
# Charlas concertadas
rmarkdown::render(
input = "templates/eda/resumen_concertadas.Rmd",
params = list(id_sheet = ID_SHEET_CONCERTADAS_LIMPIO),
output_file = "resumen_concertadas.pdf",
output_dir = DIR_EDA_LOCAL,
quiet = TRUE
)
upload_file_to_drive(file.path(DIR_EDA_LOCAL, "resumen_concertadas.pdf"), DIR_EDA_DRIVE)
# Actividades
rmarkdown::render(
input = "templates/eda/resumen_actividades.Rmd",
params = list(id_sheet = ID_SHEET_ACTIVIDADES_LIMPIO),
output_file = "resumen_actividades.pdf",
output_dir = DIR_EDA_LOCAL,
quiet = TRUE
)
upload_file_to_drive(file.path(DIR_EDA_LOCAL, "resumen_actividades.pdf"), DIR_EDA_DRIVE)