-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.R
545 lines (486 loc) · 21.8 KB
/
main.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
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
### ========================= SCRIPT PRINCIPAL ============================ ###
## SCRIPT 01 - PACOTES --------------------------------------------------------
# Carregando o script 01_pacotes.R
source("scripts/01_pacotes.R")
# Caso nunca tenha utilizado o pacote extrafont, necessário executar a função font_import()
# para a utlização da fonte Times New Roman -- obs: este processo pode demorar
#extrafont::font_import()
# Após isso, executar novamente o script '01_pacotes.R' acima
## SCRIPT 02 - IMPORTAÇÃO DOS DADOS -------------------------------------------
# Carregando o script 02_importacao_dados.R (pode demorar a compilar)
source("scripts/02_importacao_dados.R")
## SCRIPT 03 - MANIPULAÇÃO DOS DADOS ------------------------------------------
# Exportando os dados para xlsx para análise do biblioshiny
openxlsx::write.xlsx(dados, "dados/dados.xlsx", rowNames = F)
# Carregando o script 03_manipulacao_dados.R
source("scripts/03_manipulacao_dados.R")
### FIGURAS -------------------------------------------------------------------
## FIGURA 2 -------------------------------------------------------------------
# Plotagem do gráfico de linhas
figura_2 <- dados_figura2 |>
ggplot2::ggplot(ggplot2::aes(x = year, y = freq)) +
ggplot2::geom_line() +
ggplot2::geom_area(fill = '#8ebaef', alpha = .3) +
ggplot2::scale_y_continuous(breaks = scales::breaks_pretty()) +
ggplot2::scale_x_continuous(limits = c(1978, 2024),
breaks = seq(1978, 2024, 3)) +
ggplot2::labs(x = "Ano", y = "Artigos Publicados") +
ggthemes::theme_hc(base_family = "Times New Roman") +
ggplot2::theme(
axis.text = ggplot2::element_text(size = 15),
axis.title = ggplot2::element_text(size = 18)
)
# Salvando a figura 2 em /figuras
print(figura_2) |>
ggplot2::ggsave(
filename = "figuras/figura_2.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
## FIGURA 3 -------------------------------------------------------------------
# Importando o mapa mundi do pacote ggplot2
mapa <- ggplot2::map_data("world") |>
dplyr::mutate(
region = tolower(region)
)
# Plotagem do mapa
figura_3 <- ggplot2::ggplot() +
ggplot2::geom_map(data = mapa, map = mapa,
ggplot2::aes(long, lat, map_id = region),
color = "#6E7B7C", fill = "#D1DBDD",
linewidth = .1) +
ggplot2::geom_map(data = dados_figura3, map = mapa,
ggplot2::aes(fill = freq, map_id = region),
color = "#7f7f7f", linewidth = .5) +
ggplot2::scale_fill_gradient(low = "#87CEEB",
high = "#104E8B",
name = "Artigos",
limits = c(0, 2800),
breaks = seq(0, 2800, 500)) +
ggplot2::scale_x_continuous(breaks = c()) +
ggplot2::scale_y_continuous(breaks = c()) +
ggplot2::xlab("") +
ggplot2::ylab("") +
ggthemes::theme_map(base_family = "Times New Roman") +
ggplot2::theme(
legend.position = c(.05, .25)
)
# Salvando a figura 3 em /figuras
print(figura_3) |>
ggplot2::ggsave(
filename = "figuras/figura_3.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
## FIGURA 4 -------------------------------------------------------------------
# Rótulos para os países destacados
n_paises <- length(c("China", "Estados Unidos", "Reino Unido", "Paquistão", "Turquia",
"Austrália", "Índia", "Alemanha"))
# Plotando a figura 4
figura_4 <- ggplot2::ggplot(data = dados_figura4 |>
dplyr::filter(total_article < 1300),
ggplot2::aes(year, articles, group = country)
) +
ggplot2::geom_line(color = "grey75", linewidth = .6,
alpha = .5, show.legend = FALSE) +
ggplot2::geom_line(
data = dados_figura4 |>
dplyr::filter(
country %in% c("China",
"Estados Unidos",
"Reino Unido",
"Paquistão",
"Turquia",
"Austrália",
"Índia",
"Alemanha")
),
ggplot2::aes(col = country), linewidth = .9, show.legend = FALSE
) +
ggplot2::geom_segment(
data = tibble::tibble(y = 0, x1 = 1990, x2 = 2024),
ggplot2::aes(x = x1, xend = x2, y = y, yend = y),
inherit.aes = FALSE,
color = "grey60",
size = .8
) +
ggplot2::geom_vline(
ggplot2::aes(xintercept = ano_ref),
color = "grey40",
linetype = "dotted",
size = .8
)
# Inserção de texto e legenda no gráfico
figura_4 <- figura_4 +
ggplot2::annotate(
"text", x = 2017.5, y = 630,
label = "2018",
family = "Times New Roman",
size = 6,
color = "grey40",
hjust = .5,
lineheight = 0.8
) +
ggrepel::geom_text_repel(
data = dados_figura4 |>
dplyr::filter(year == 2024) |>
dplyr::arrange(dplyr::desc(articles)) |>
head(8),
ggplot2::aes(color = country, label = country),
family = "Times New Roman",
fontface = "bold",
size = 5,
direction = "y",
xlim = c(2030, NA),
hjust = 0,
segment.size = .7,
segment.alpha = .5,
segment.linetype = "dotted",
box.padding = .4,
segment.curvature = -0.1,
segment.ncp = 3,
segment.angle = 20,
max.overlaps = Inf,
show.legend = FALSE
) +
# Sistema de coordenadas
ggplot2::coord_cartesian(
clip = "off",
ylim = c(0, 2800)
) +
# Correção de escala do eixo x e y e cores
ggplot2::scale_x_continuous(limits = c(1990, 2024),
breaks = seq(1990, 2024, 3)) +
ggplot2::scale_y_continuous(limits = c(0, 2800),
breaks = scales::breaks_pretty()) +
ggplot2::scale_color_manual(
values = c(
rcartocolor::carto_pal(
n = n_paises, name = "Bold")[1:n_paises-1], "grey50"
)
) +
ggplot2::labs(y = "Artigos Publicados", x = "Ano") +
beautyxtrar::theme_academic() +
ggplot2::theme(
axis.text = ggplot2::element_text(size = 15),
axis.title = ggplot2::element_text(size = 18)
)
# Salvando a figura 4 em /figuras
print(figura_4) |>
ggplot2::ggsave(
filename = "figuras/figura_4.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
## FIGURA 5 -------------------------------------------------------------------
# Abrir o dispositivo gráfico para salvar a figura 5
png(filename = "figuras/figura_5.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
units = "in", # Unidades em polegadas
res = 300) # Resolução do gráfico em DPI (dots per inch)
# Plot do mapa como background
maps::map('world', fill = TRUE, col = '#E4E9EA', border = '#A8ACAD', lwd = .8)
# Definindo os limites do eixo x e y
xrange <- range(collab_net %v% 'lon', na.rm = TRUE)
yrange <- range(collab_net %v% 'lat', na.rm = TRUE)
xlim <- c(xrange[1] - 10, xrange[2] + 10)
ylim <- c(yrange[1] - 10, yrange[2] + 10)
# Plotagem da rede
figura_5 <- network::plot.network(collab_net,
new = FALSE,
coord = cbind(collab_net %v% 'lon',
collab_net %v% 'lat'),
edge.col = '#5c7dbf40',
edge.label.cex = .1,
vertex.cex = 0.7,
vertex.col = '#5c7dbf',
vertex.border = 'grey70',
jitter = FALSE,
xlim = xlim,
ylim = ylim)
# Fechar o dispositivo gráfico
dev.off()
## FIGURA 6 -------------------------------------------------------------------
figura_6 <- ggplot2::ggplot(data = dados_figura6 |>
dplyr::filter(total_n < 700),
ggplot2::aes(py, n, group = areas)) +
ggplot2::geom_line(color = "grey75",
linewidth = .6,
alpha = .5, show.legend = FALSE) +
ggplot2::geom_line(
data = dados_figura6 |>
dplyr::filter(total_n > 700),
ggplot2::aes(col = areas),
linewidth = .9
)
# Rótulos para as áreas destacadas
n_areas <- length(areas <- c("Ciência Ambiental",
"Ciências Sociais",
"Economia, Econometria e Finanças",
"Energia",
"Medicina"))
figura_6 <- figura_6 +
# Sistema de coordenadas
ggplot2::coord_cartesian(
clip = "off",
ylim = c(0, 610)
) +
# Correção de escala do eixo x e y e cores
ggplot2::scale_x_continuous(limits = c(1978, 2024),
breaks = seq(1978, 2024, 3)) +
ggplot2::scale_y_continuous(limits = c(0, 610),
breaks = scales::breaks_pretty()) +
ggplot2::scale_color_manual(
values = c(
rcartocolor::carto_pal(
n = n_areas, name = "Bold")[1:n_areas-1], "grey50"
)
) +
ggplot2::labs(y = "Artigos Publicados", x = "Ano", col = NULL) +
beautyxtrar::theme_academic() +
ggplot2::theme(
legend.position = c(.13, .9),
legend.text = ggplot2::element_text(size = 16),
axis.text = ggplot2::element_text(size = 15),
axis.title = ggplot2::element_text(size = 18)
)
# Salvando a figura 6 em /figuras
print(figura_6) |>
ggplot2::ggsave(
filename = "figuras/figura_6.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
## FIGURA 7 -------------------------------------------------------------------
# Plotagem da figura 7a
figura_7a <- dados_figura7 |>
ggplot2::ggplot(ggplot2::aes(x = total_citacoes,
y = pais_fator,
col = total_citacoes)) +
ggplot2::geom_col(fill = "#77a3bf", col = "#688fa5",
width = .8, show.legend = FALSE) +
ggplot2::scale_x_continuous(breaks = scales::breaks_pretty(n = 5)) +
ggplot2::geom_text(
data = dados_figura7 |>
dplyr::filter(total_citacoes >= 14000),
ggplot2::aes(label = total_citacoes,
x = total_citacoes - 0.05 * max(
dados_figura7$total_citacoes)
),
size = 6, show.legend = FALSE, col = 'gray97',
family = "Times New Roman") +
ggplot2::labs(x = "Total de Citações", y = "País") +
beautyxtrar::theme_academic() +
ggplot2::theme(
legend.text = ggplot2::element_text(size = 16),
axis.text = ggplot2::element_text(size = 15),
axis.title = ggplot2::element_text(size = 18)
)
# Salvando a figura 7a em /figuras
print(figura_7a) |>
ggplot2::ggsave(
filename = "figuras/figura_7a.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
# Plotagem da figura 7b
figura_7b <- dados_figura7 |>
dplyr::mutate(pais_fator = forcats::fct_reorder(pais, media_tc)) |>
ggplot2::ggplot(ggplot2::aes(x = media_tc, y = pais_fator,
col = media_tc)) +
ggplot2::geom_col(fill = "#77a3bf", col = "#688fa5",
width = .8, show.legend = FALSE) +
ggplot2::scale_x_continuous(limits = c(0, 80),
breaks = scales::breaks_pretty(n = 5)) +
ggplot2::geom_text(data = dados_figura7 |>
dplyr::filter(media_tc >= 50),
ggplot2::aes(label = media_tc,
x = media_tc - 0.05 * max(
dados_figura7$media_tc)
),
size = 6, show.legend = FALSE, col = 'gray97',
family = "Times New Roman") +
ggplot2::labs(x = "Média de Citações", y = "País") +
beautyxtrar::theme_academic() +
ggplot2::theme(
legend.text = ggplot2::element_text(size = 16),
axis.text = ggplot2::element_text(size = 15),
axis.title = ggplot2::element_text(size = 18)
)
# Salvando a figura 7b em /figuras
print(figura_7b) |>
ggplot2::ggsave(
filename = "figuras/figura_7b.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
## FIGURA 8 -------------------------------------------------------------------
# Plotagem da figura 8
figura_8 <- dados_figura8 |>
ggplot2::ggplot(ggplot2::aes(y = reorder(item, year_med))) +
ggalt::geom_dumbbell(aes(x = year_q1, xend = year_q3),
color = "#C2C8DB",
size = 1.8,
dot_guide = FALSE,
size_x = 1.3,
size_xend = 1.3,
colour_x = "#C2C8DB",
colour_xend = "#C2C8DB",
show.legend = FALSE) +
ggplot2::geom_point(aes(x = year_med, y = item, size = freq),
col = '#577B9B', alpha = .8,
shape = 21, stroke = 1,
fill = '#6187B0', show.legend = FALSE) +
ggplot2::scale_size(range = c(2, 8)) +
ggplot2::scale_x_continuous(limits = c(1992, 2024),
breaks = scales::breaks_width(4)) +
beautyxtrar::theme_xtra(base_family = "Times New Roman") +
ggplot2::labs(x = NULL, y = "Palavras-Chave dos Autores") +
ggplot2::theme(
axis.text.y = ggplot2::element_text(size = 10,
hjust = 1,
vjust = 0.5),
panel.grid.major = ggplot2::element_line(color = "gray90",
linewidth = .5),
panel.grid.minor = ggplot2::element_line(color = "gray90",
linewidth = 0.25,
linetype = "dashed")
)
# Salvando a figura 8 em /figuras
print(figura_8) |>
ggplot2::ggsave(
filename = "figuras/figura_8.png",
width = 16, # Largura do gráfico em polegadas
height = 9, # Altura do gráfico em polegadas
dpi = 300 # Resolução do gráfico em DPI (dots per inch)
)
### TABELAS -------------------------------------------------------------------
## Tabela 1 -------------------------------------------------------------------
# Preparando os dados da tabela
tabela_1 <- dados_tabela1 |>
head(10) |>
dplyr::rename(
`Periódico` = element,
`H Index` = h_index_x,
`Total de Citações` = tc_x,
`Total de Artigos` = np,
`Ano Inicial de Publicação` = py_start
)
# Criando o gráfico da tabela usando ggplot2
tabela_1 <- ggplot2::ggplot(tabela_1,
ggplot2::aes(x = "", y = Periódico)) +
ggplot2::geom_blank() +
ggplot2::theme_void() +
ggplot2::annotation_custom(
gridExtra::tableGrob(tabela_1)
) +
ggplot2::ggtitle(
"Tabela 1 - Desempenho dos principais periódicos científicos em termos de índice de produtividade acadêmica"
) +
ggplot2::theme(
plot.title = ggplot2::element_text(
size = 14, face = "bold", hjust = 0.5, vjust = -.5
)
)
# Gerando o PDF em /tabelas
pdf("tabelas/tabela_1.pdf", height = 3.5, width = 14, family = "Times")
print(tabela_1)
dev.off()
## Tabela 2 -------------------------------------------------------------------
# Preparando os dados da tabela
tabela_2 <- dados_tabela2 |>
head(10) |>
dplyr::rename(
`Instituição` = au_un,
`Total de Citações` = total_artigos_instituto,
`Total de Artigos` = articles
)
# Criando o gráfico da tabela usando ggplot2
tabela_2 <- ggplot2::ggplot(tabela_2,
ggplot2::aes(x = "", y = Instituição)) +
ggplot2::geom_blank() +
ggplot2::theme_void() +
ggplot2::annotation_custom(
gridExtra::tableGrob(tabela_2)
) +
ggplot2::ggtitle(
"Tabela 2 - As dez instituições científicas mais influentes em termos de total de citações recebidas e total de artigos publicados"
) +
ggplot2::theme(
plot.title = ggplot2::element_text(
size = 14, face = "bold", hjust = 0.5, vjust = -.5
)
)
# Gerando o PDF em /tabelas
pdf("tabelas/tabela_2.pdf", height = 3.5, width = 14, family = "Times")
print(tabela_2)
dev.off()
## Tabela 3 -------------------------------------------------------------------
# Preparando os dados da tabela
tabela_3 <- dados_tabela3 |>
head(10) |>
dplyr::rename(
`Autor` = element,
`H Index` = h_index,
`Total de Citações` = tc,
`Total de Artigos` = np,
`Ano Inicial de Publicação` = py_start
)
# Criando o gráfico da tabela usando ggplot2
tabela_3 <- ggplot2::ggplot(tabela_3,
ggplot2::aes(x = "", y = Autor)) +
ggplot2::geom_blank() +
ggplot2::theme_void() +
ggplot2::annotation_custom(
gridExtra::tableGrob(tabela_3)
) +
ggplot2::ggtitle(
"Tabela 3 - Os dez autores mais influentes em termos de índice de produtividade acadêmica"
) +
ggplot2::theme(
plot.title = ggplot2::element_text(
size = 14, face = "bold", hjust = 0.5, vjust = -.5
)
)
# Gerando o PDF em /tabelas
pdf("tabelas/tabela_3.pdf", height = 3.5, width = 14, family = "Times")
print(tabela_3)
dev.off()
## Tabela 4 -------------------------------------------------------------------
# Preparando os dados da tabela
tabela_4 <- dados_tabela4 |>
dplyr::select(-c(2:3, 7, 8)) |>
head(10) |>
dplyr::rename(
`Documento` = Document,
`LCS` = `Local Citations`,
`GCS` = `Global Citations`,
`Influência Local (%)` = `LC/GC Ratio (%)`
)
# Criando o gráfico da tabela usando ggplot2
tabela_4 <- ggplot2::ggplot(tabela_4,
ggplot2::aes(x = "", y = Documento)) +
ggplot2::geom_blank() +
ggplot2::theme_void() +
ggplot2::annotation_custom(
gridExtra::tableGrob(tabela_4)
) +
ggplot2::ggtitle(
"Tabela 4 - Principais documentos em termos de citação local e relevância para o campo de estudo"
) +
ggplot2::theme(
plot.title = ggplot2::element_text(
size = 14, face = "bold", hjust = 0.5, vjust = -.5
)
)
# Gerando o PDF em /tabelas
pdf("tabelas/tabela_4.pdf", height = 3.5, width = 14, family = "Times")
print(tabela_4)
dev.off()