-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.Rmd
executable file
·79 lines (65 loc) · 1.65 KB
/
index.Rmd
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
---
title: "Green Finance"
author: "Roney Fraga Souza"
date: "`r format(Sys.time(), '%d %B %Y - %T')`"
site: bookdown::bookdown_site
documentclass: book
output:
bookdown::gitbook: default
bibliography: referencias.bib
csl: abnt-ipea.csl
link-citations: yes
---
# Introduction {#intro}
Green Finance' Literature analysis.
Full code available here: [https://github.com/roneyfraga/2021-green-finance](https://github.com/roneyfraga/2021-green-finance)
```{r include=FALSE}
knitr::opts_chunk$set(cache = TRUE)
options(scipen = 999)
# options(width=80)
```
<!--
Opções no chunk
eval incluir o resultado do código executado, pode ser logico ou numérico
echo mostrar o código
warning mostrar mensagens de aviso
error mostrar mensagens de erro
message mostrar mensagens
tidy mostrar ajustar o código ao display, ignora identação
comment '##' ou qq símbolo, para os resultados dos códigos serem antecedidos por ##
include se falso, executa mas não inclui o chunk no relatório
-->
```{r eval = T, echo = F, warning = F, error = T, tidy = F, message = F}
# packageVersion('igraph')
# renv::install('[email protected]')
library(pipeR)
library(rio)
library(bibliometrix)
library(dplyr)
library(tidyr)
library(fs)
library(purrr)
library(janitor)
library(stringr)
library(stringi)
library(rcrossref)
library(ggplot2)
library(highcharter)
library(igraph)
library(ggraph)
library(tidygraph)
library(visNetwork)
library(DT)
library(sjPlot)
library(birddog)
library(tictoc)
# dealing with text
library(textclean)
library(tm)
library(SnowballC)
# topic model
library(tidytext)
library(topicmodels)
library(textmineR)
source('utils.R')
```