Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muschellij2/webofscience
Web of Science API
https://github.com/muschellij2/webofscience
Last synced: 19 days ago
JSON representation
Web of Science API
- Host: GitHub
- URL: https://github.com/muschellij2/webofscience
- Owner: muschellij2
- License: gpl-3.0
- Created: 2018-10-08T17:17:11.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-19T19:56:23.000Z (about 6 years ago)
- Last Synced: 2024-10-16T08:22:06.686Z (2 months ago)
- Language: R
- Size: 97.7 KB
- Stars: 4
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---[![Travis build status](https://travis-ci.com/muschellij2/webofscience.svg?branch=master)](https://travis-ci.com/muschellij2/webofscience)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/muschellij2/webofscience?branch=master&svg=true)](https://ci.appveyor.com/project/muschellij2/webofscience)
[![Coverage status](https://codecov.io/gh/muschellij2/webofscience/branch/master/graph/badge.svg)](https://codecov.io/gh/muschellij2/webofscience)```{r setup, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
# webofscience Package:
The goal of `webofscience` is to provide interacts with the Web of Science API, including 'InCites' to retrieve citation information.## API Keys
API keys need to be requested at: https://developer.clarivate.com/apis. Each API has a different API key and can be set using `ws_set_API_key` where `API` is the API in question. See `ws_list_apis()` for a listing of the APIs and `ws_endpoints()` for their endpoints.
## Installation
You can install `webofscience` from GitHub with:
```{r gh-installation, eval = FALSE}
# install.packages("remotes")
remotes::install_github("muschellij2/webofscience")
```