| scopus_query | R Documentation |
Combines several terms into one 'Scopus' query string, optionally wrapping each in a field tag and joining them with a boolean operator. It is a tidier alternative to pasting query fragments together by hand, which is where field-tag and bracket mistakes tend to creep in.
scopus_query(..., .op = c("AND", "OR", "AND NOT"), .field = NULL)
... |
Character terms to combine, for example |
.op |
The boolean operator joining the terms, one of |
.field |
Optional field tag applied to every term (see
|
A length-one character string suitable for scopus_count(),
scopus_fetch() or the query of scopus_plan().
scopus_field_tags(), scopus_plan()
scopus_query("climate change", "adaptation", .field = "TITLE-ABS-KEY")
scopus_query("graphene", "supercapacitor", .op = "AND")
scopus_query("CRISPR", "Cas9", "Cas12", .op = "OR")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.