Learn R Programming

rscopus (version 0.1.2)

author_retrieval: SCOPUS Author Retrieval

Description

This function wraps generic_elsevier_api to give a retrieval of an author from the Elsevier Author Retrieval API

Usage

author_retrieval(id, identifier = c("author_id", "eid"), http_end = NULL, ...)

Arguments

id
Identifier for author
identifier
Type of identifier to use
http_end
any additional end to http statement. See generic_elsevier_api
...
Arguments to be passed to generic_elsevier_api

Value

List of elements, similar to generic_elsevier_api

See Also

generic_elsevier_api

Examples

Run this code
api_key = get_api_key(NULL, error = FALSE)
if (!is.null(api_key)){
   x = author_retrieval("40462056100", identifier = "author_id")
} else {
 x = author_retrieval(
 "40462056100",
 identifier = "author_id",
   api_key_error = FALSE)
}

Run the code above in your browser using DataLab