Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ropensci/patentsview
An R client to the PatentsView API
https://github.com/ropensci/patentsview
patents patentsview patentsview-api peer-reviewed r r-package rstats uspto
Last synced: 3 months ago
JSON representation
An R client to the PatentsView API
- Host: GitHub
- URL: https://github.com/ropensci/patentsview
- Owner: ropensci
- License: other
- Created: 2017-02-17T01:53:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-07-20T04:47:34.000Z (4 months ago)
- Last Synced: 2024-07-20T05:49:03.972Z (4 months ago)
- Topics: patents, patentsview, patentsview-api, peer-reviewed, r, r-package, rstats, uspto
- Language: R
- Homepage: https://docs.ropensci.org/patentsview
- Size: 7.26 MB
- Stars: 31
- Watchers: 11
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
- awesome-patent - patentsview - An R client to the PatentsView API. (Open Source Tools for Patent Analytics)
README
---
title: "patentsview"
output: github_document
---```{r, echo = FALSE, message = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
```> An R client to the PatentsView API
[![](http://badges.ropensci.org/112_status.svg)](https://github.com/ropensci/software-review/issues/112)
[![R-CMD-check](https://github.com/ropensci/patentsview/workflows/R-CMD-check/badge.svg)](https://github.com/ropensci/patentsview/actions)
[![CRAN version](http://www.r-pkg.org/badges/version/patentsview)](https://cran.r-project.org/package=patentsview)## Installation
You can get the stable version from CRAN:
```{r eval = FALSE}
install.packages("patentsview")
```Or the development version from GitHub:
```{r eval = FALSE}
if (!"devtools" %in% rownames(installed.packages()))
install.packages("devtools")devtools::install_github("ropensci/patentsview")
```## Basic usage
The [PatentsView API](https://patentsview.org/apis/api-endpoints) provides an interface to a disambiguated version of USPTO. The `patentsview` R package provides one main function, `search_pv()`, to make it easy to interact with the API:
```{r}
library(patentsview)search_pv(query = '{"_gte":{"patent_date":"2007-01-01"}}')
```## Learning more
Head over to the package's [webpage](https://docs.ropensci.org/patentsview/index.html) for more info, including:
* A [getting started vignette](https://docs.ropensci.org/patentsview/articles/getting-started.html) for first-time users. The package was also introduced in an [rOpenSci blog post](https://ropensci.org/blog/2017/09/19/patentsview/).
* An in-depth tutorial on [writing queries](https://docs.ropensci.org/patentsview/articles/writing-queries.html)
* A list of [basic examples](https://docs.ropensci.org/patentsview/articles/examples.html)
* Two examples of data applications (e.g., a brief analysis of the [top assignees](https://docs.ropensci.org/patentsview/articles/top-assignees.html) in the field of databases)