Learn R Programming

fulltext (version 1.0.1)

scopus_search: Scopus search

Description

Scopus search

Usage

scopus_search(query = NULL, count = 25, start = 0, type = "search",
  search_type = "scopus", key = NULL, ...)

Arguments

query

(character) query terms, as a single character vector

count

(integer/numeric) results to return: default: 25

start

(integer/numeric) offset value, default: 0

type

(character) type of search, default: search

search_type

(character) search type, default: scopus

key

(character) api key. get a key at https://dev.elsevier.com/index.html

...

curl options passed on to crul::HttpClient

Details

Rate limits for search are 20,000 per every 7 days. You likely won't make that many requests in 7 days, but if you do e.g., make 20K in 5 days, then you have to wait 2 days for the clock to reset, than you'll be able to make 20K again.

See https://dev.elsevier.com/api_key_settings.html for rate limit information.

Examples

Run this code
# NOT RUN {
res <- scopus_search(query = "ecology")
res

#scopus_search(query = x, type = "abstract")

# looping through
res <- scopus_search_loop(query = "ecology community elk cow")
# }

Run the code above in your browser using DataLab