Learn R Programming

bibliometrix (version 4.3.0)

idByAuthor: Get Complete Author Information and ID from Scopus

Description

Uses SCOPUS API author search to identify author identification information.

Usage

idByAuthor(df, api_key)

Value

a data frame with cases corresponding to authors and variables to author's information and ID got from SCOPUS.

Arguments

df

is a dataframe composed of three columns:

lastnameauthor's last name
firstnameauthor's first name
affiliationPart of the affiliation name (university name, city, etc.)

i.e. df[1,1:3]<-c("aria","massimo","naples") When affiliation is not specified, the field df$affiliation have to be NA. i.e. df[2,1:3]<-c("cuccurullo","corrado", NA)

api_key

is a character. It contains the Elsevier API key. Information about how to obtain an API Key Elsevier API website

See Also

retrievalByAuthorID for downloading the complete author bibliographic collection from SCOPUS

Examples

Run this code
## Request a personal API Key to Elsevier web page https://dev.elsevier.com/sc_apis.html
#
# api_key="your api key"

## create a data frame with the list of authors to get information and IDs
# i.e. df[1,1:3]<-c("aria","massimo","naples")
#      df[2,1:3]<-c("cuccurullo","corrado", NA)

## run idByAuthor function
#
# authorsID <- idByAuthor(df, api_key)

Run the code above in your browser using DataLab