Felipe Campelo
Operations Research and Complex Systems Laboratory - ORCS Lab Universidade Federal de Minas Gerais Belo Horizonte, Brazil
R package for extracting and summarising information from the Lattes database of Brazilian Researchers.
This package currently exports four methods:
Example:
Download example file (curriculo.xml) from here, and save it to your current working folder.
Convert it to a Lattes list:
library(ChocoLattes) # <-- assuming it is installed, of course
lattes.list <- lattes_to_list(filenames = "curriculo.xml")
a <- plot_chart(lattes.list = lattes.list,
chart.type = "ggplot2")
print(a)
or a full productions page:
make_productions_page(lattes.list = lattes.list,
chart.type = "plotly",
h1.title = "Felipe Campelo",
h2.title = "UFMG, Brazil",
language = "EN")
Have fun!!!
Felipe