This package extracts data from Minciencias web pages about research groups and researchers, merge information with quality of articles from Scimago, Publindex and Google scholar. And export the data in a xlsx file.
install.packages("margaret")
install.packages('devtools')
::install_github('coreofscience/margaret') devtools
library(margaret)
library(margaret)
# Load data in a dataframe of r
<- read.csv(".../groups_information.csv", header=T, sep=",")
groups
<- getting_data(groups)
margaret_data
#or just
::getting_data(groups) margaret
For installing this package also installs a selection of other packages that you’re likely to use frequently, but probably not in every analysis.
rvest, For make it easy to download, then manipulate, HTML and XML.
scholar, For extract citation data from Google Scholar.
stringi, For processing tools for pattern.
tidyverse, for load core packages from tidyverse.
writexl, For Zero-dependency data frame to xlsx export.