-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Idea: Retrieve "Full Record and Cited References" #5
Comments
Hi Jürgen, the "full record and cited references" format that you referenced is not served by the WoS API, but the API does offer cited references for a given publication in a different format. For example, here is the data that is provided for one cited reference: I'll consider adding a client to |
Thank you very much.... i will try to learn from your functions used in wosr.... and perhaps you are quicker than I 😊 Best regards |
Hi @frajuegies , this issue has been closed by commits 83ebd13- 2b04459. After you install the development version of library(wosr)
sid <- auth()
uts <- c("WOS:000362312600021", "WOS:000439855300030", "WOS:000294946900020")
pull_cited_refs(uts, sid)
#> ut doc_id
#> 1 WOS:000362312600021 77452845
#> 2 WOS:000362312600021 4418415
#> 3 WOS:000362312600021 286622905
#> 4 WOS:000439855300030 558219860
#> 5 WOS:000294946900020 422906512
#> 6 WOS:000294946900020 422609377
#> title
#> 1 Factors affecting time to adoption of dogs re-homed by a charity in the UK
#> 2 Factors associated with the decision to surrender a pet to an animal shelter
#> 3 Characteristics of Relinquished Dogs and Their Owners at 14 Rehoming Centers in the United Kingdom
#> 4 Peak forelimb ground reaction forces experienced by dogs jumping from a simulated car boot
#> 5 <NA>
#> 6 <NA>
#> journal author
#> 1 ANIMAL WELFARE Diesel, G.
#> 2 JOURNAL OF THE AMERICAN VETERINARY MEDICAL ASSOCIATION Miller, DD
#> 3 JOURNAL OF APPLIED ANIMAL WELFARE SCIENCE Diesel, Gillian
#> 4 VETERINARY RECORD Pardey, David
#> 5 VET REC <NA>
#> 6 VET REC <NA>
#> tot_cites year page volume
#> 1 20 2007 353 16
#> 2 108 1996 738 209
#> 3 28 2010 15 13
#> 4 1 2018 716 182
#> 5 1 2011 291 169
#> 6 2 2011 217 169 Created on 2018-10-17 by the reprex package (v0.2.0.9000). |
Good morning, |
Hi,
thank you very much for your great package.
Do you think it is possible to retrieve and parse the "Full Record and Cited References" as an option like you find this on the WOS download screen?
This would be great to enable network graphs...
Best regards,
Jürgen
The text was updated successfully, but these errors were encountered: