pull_related_recs.Rd
Pull the records that have at least one citation in common with a publication of interest.
pull_related_recs(uts, num_recs, editions = c("SCI", "SSCI", "AHCI", "ISTP", "ISSHP", "BSCI", "BHCI", "IC", "CCR", "ESCI"), sid = auth(Sys.getenv("WOS_USERNAME"), Sys.getenv("WOS_PASSWORD")), ...)
uts | The documents whose related records you want to pull. |
---|---|
num_recs | Number of related records to pull for each UT. This value must be <= 100. |
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 |
A data frame with the following columns:
The publications that you passed into pull_related_recs
.
If one of your publications doesn't have any related records, it won't
appear here.
The publication that is related to ut
.
The related record's ordering in the result set returned
by the API. Records that share more citations with your UTs will have
smaller rec_num
s.
# NOT RUN { sid <- auth("your_username", password = "your_password") uts <- c("WOS:000272877700013", "WOS:000272366800025") out <- pull_related_recs(uts, 5, sid = sid) # }