abstract_retrieval {rscopus} | R Documentation |
SCOPUS Abstract Retrieval
Description
This function wraps generic_elsevier_api
to give a
retrieval of an abstract from the Elsevier Abstract Retrieval API
Usage
abstract_retrieval(id, identifier = c("scopus_id", "eid", "doi", "pii",
"pubmed_id", "pui", "group_id"), http_end = NULL, ...)
Arguments
id |
Identifier for abstract |
identifier |
Type of identifier to use |
http_end |
any additional end to http statement.
See |
... |
Arguments to be passed to |
Value
List of elements, similar to generic_elsevier_api
See Also
Examples
api_key = get_api_key(NULL, error = FALSE)
if (!is.null(api_key)){
x = abstract_retrieval("S1053811915002700", identifier = "pii",
verbose = FALSE)
x = abstract_retrieval("S1053811915002700", identifier = "pii",
view = "FULL",
verbose = FALSE)
}
[Package rscopus version 0.6.6 Index]