Description Usage Arguments Value See Also Examples
View source: R/citation_retrieval.R
SCOPUS Citation Retrieval
1 2 3 4 | citation_retrieval(scopus_id = NULL, pii = NULL, doi = NULL,
pubmed_id = NULL, date_range = NULL, ...)
parse_citation_retrieval(result)
|
scopus_id |
Scopus Identifier |
pii |
Scopus Identifier |
doi |
Scopus Identifier |
pubmed_id |
Scopus Identifier |
date_range |
date range to specify, must be length 2 |
... |
Arguments to be passed to |
result |
result from |
List of elements, similar to generic_elsevier_api
1 2 3 4 5 6 7 8 9 10 11 12 | api_key = Sys.getenv("Elsevier_API_Interactive")
set_api_key(api_key)
if (!is.null(api_key) & nchar(api_key) > 0){
result = citation_retrieval(pii = c("S0140673616324102",
"S0014579301033130"),
verbose = FALSE)
if (httr::status_code(result$get_statement) < 400) {
res = parse_citation_retrieval(result)
}
}
set_api_key(NULL)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.