pull_cited_refs.Rd
Pull cited references
pull_cited_refs(uts, sid = auth(Sys.getenv("WOS_USERNAME"), Sys.getenv("WOS_PASSWORD")), ...)
uts | Vector of UTs (i.e., publications) whose cited references you want. |
---|---|
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 |
A data frame with the following columns:
The publication that is doing the citing. These are the UTs that
you submitted to pull_cited_refs
. If one of your publications
doesn't have any cited refs, it will not appear in this column.
The cited ref's document identifier (similar to a UT).
Roughly equivalent to the cited ref's title.
Roughly equivalent to the cited ref's journal.
The cited ref's first author.
The total number of citations the cited ref has received.
The cited ref's publication year.
The cited ref's page number.
The cited ref's journal volume.
# NOT RUN { sid <- auth("your_username", password = "your_password") uts <- c("WOS:000362312600021", "WOS:000439855300030", "WOS:000294946900020") pull_cited_refs(uts, sid) # }