knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

rpubprofile

The goal of rpubprofile is to use the Scopus API to fetch publication and citation data based on a researcher's Scopus ID and create two plots that summarise a researcher's publishing history in terms of number of publications over time, citations received and most common subject areas. It requires a subscription to Scopus (authentication is IP-based) and the passing of valid Scopus API key to the data fetching function.

Installation

You can install the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("henrikkarlstrom/rpubprofile")

Example

Use of rpubprofile functions:

library(rpubprofile)
## get researcher data on Rosalind Franklin
data <- get_researcher_data("23056907500", apiKey = Sys.getenv("SCOPUS_API_KEY"))
suppressWarnings(plot_publication_profile(data))


henrikkarlstrom/rpubprofile documentation built on Sept. 7, 2021, 5:03 a.m.