pull_wos_apply {wosr} | R Documentation |
Run pull_wos
across multiple queries
Description
Run pull_wos
across multiple queries
Usage
pull_wos_apply(queries, editions = c("SCI", "SSCI", "AHCI", "ISTP",
"ISSHP", "BSCI", "BHCI", "IC", "CCR", "ESCI"),
sid = auth(Sys.getenv("WOS_USERNAME"), Sys.getenv("WOS_PASSWORD")),
...)
Arguments
queries |
Vector of queries to issue to the WoS API and pull data for. |
editions |
Web of Science editions to query. Possible values are listed here. |
sid |
Session identifier (SID). The default setting is to get a fresh
SID each time you query WoS via a call to |
... |
Arguments passed along to |
Value
The same set of data frames that pull_wos
returns, with
the addition of a data frame named query
. This data frame frame tells
you which publications were returned by a given query.
Examples
## Not run:
queries <- c('TS = "dog welfare"', 'TS = "cat welfare"')
# we can name the queries so that these names appear in the queries data
# frame returned by pull_wos_apply():
names(queries) <- c("dog welfare", "cat welfare")
pull_wos_apply(queries)
## End(Not run)
[Package wosr version 0.3.0 Index]