fcampelo / ChocoLattes

Pacote R para processamento de informações a partir de conjuntos de CV Lattes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ChocoLattes package

Build StatusCRAN_Status_Badge CRAN Downloads

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:

  • lattes_to_list(...) - extracts information from a Lattes CV xml file (or a list of xml files, or a folder full of xml files) and structures everything in a neat list vector, taking care of duplicates (using DOI and title for papers, and ISSN and title for books) and formatting author names. It currently extracts info on journal papers (accepted or published), conference papers, book chapters, books, PhD theses and MSc dissertations.
  • make_productions_page(...) - builds a neat HTML page with the productions of the researcher (or lab, or department), based on the list produced by lattes_to_list(...)
  • plot_chart produces a summary chart of productions, based on the list produced by lattes_to_list(...)
  • extract_qualis generates an Excel (or CSV) file containing the production summary of the researcher (or lab, or department), based on the list produced by lattes_to_list(...) and on a certain QUALIS extract

Example:

  1. Download example file (curriculo.xml) from here, and save it to your current working folder.

  2. Convert it to a Lattes list:

library(ChocoLattes) # <-- assuming it is installed, of course
lattes.list <- lattes_to_list(CV.dir = getwd())
  1. Build a productions chart
a <- plot_chart(lattes.list = lattes.list, 
                chart.type  = "ggplot2", 
                language = "PT")
print(a)

or a full productions page:

make_productions_page(lattes.list = lattes.list,
                      chart.type  = "ggplot2",
                      h1.title    = "ORCS Lab",
                      h2.title    = "UFMG, Brazil",
                      language    = "EN")

Have fun!!!
Felipe

About

Pacote R para processamento de informações a partir de conjuntos de CV Lattes


Languages

Language:R 100.0%