Skip to content

Instantly share code, notes, and snippets.

@icaroagostino
Created March 15, 2022 10:53
Show Gist options
  • Save icaroagostino/41f57f3354a8ae3ddb05abc996e8dafb to your computer and use it in GitHub Desktop.
Save icaroagostino/41f57f3354a8ae3ddb05abc996e8dafb to your computer and use it in GitHub Desktop.
library(bibliometrix)
library(openxlsx)
# Definir pasta de trabalho onde devem estar os arquivos Ctrl + Shit H
# Colocar o nome correto dos arquivos
# Web of Science
wos <- convert2df(file = 'savedrecs.bib',
dbsource = 'wos',
format = 'bibtex')
# Scopus
scopus <- convert2df(file = 'scopus.bib',
dbsource = 'scopus',
format = 'bibtex')
M <- mergeDbSources(wos, scopus, remove.duplicated = TRUE)
write.xlsx(M, 'base_junta.xlsx')
biblioshiny()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment