pull_wos
across multiple queriespull_wos_apply.Rd
Run pull_wos
across multiple queries
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")), ...)
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 |
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.
# 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) # }