• Overview
•
Requirements
•
Installation
•
Get started
•
Citation
•
Contributing
•
Acknowledgments
The R package rwosstarter
is a client to the Web of Science Starter
API. It is dedicated
to retrieve metadata (including times-cited counts) of scientific
publications matching search terms. It can be used to run a literature
synthesis.
rwosstarter
is freely released by the
FRB-CESAB.
The Web of Science Starter API uses an API Key access. To obtain your own API key, please visit the Clarivate Developer Portal and follow instructions.
Once your access has been granted by Clarivate, you have to store your API key on your computer. A good practice in managing secrets is to store this API key as an R Environment variable.
Use the function usethis::edit_r_environ()
to open the ~/.Renviron
file and add this line (replace ‘z999zzz…’ by your actual API key):
WOS_STARTER_KEY='z999zzz9zzz999999z9z99zz999zz999'
Save this file and restart R.
You can install the development version from GitHub with:
# install.packages("remotes")
remotes::install_github("frbcesab/rwosstarter")
The general workflow is the following:
- Use the function
rwosstarter::wos_search()
to get the total number of references that match the Web of Science query. - Use the function
rwosstarter::wos_get_records()
to download reference data.
Please cite this package as:
Casajus N (2023) rwosstarter: An R Client to the Web of Science Starter API. R package version 0.1. https://github.com/FRBCesab/rwosstarter
All types of contributions are encouraged and valued. For more information, check out our Contributor Guidelines.
Please note that the rwosstarter
project is released with a
Contributor Code of
Conduct.
By contributing to this project, you agree to abide by its terms.
The author of this project would like to thank Clarivate for giving access to the Starter API.