All Projects → ropensci → Patentsview

ropensci / Patentsview

Licence: other
An R client to the PatentsView API

Programming Languages

r
7636 projects

Projects that are alternatives of or similar to Patentsview

Magick
Magic, madness, heaven, sin
Stars: ✭ 362 (+1911.11%)
Mutual labels:  r-package, rstats
Egretci
A bootstrap method for estimating uncertainty of water quality trends
Stars: ✭ 5 (-72.22%)
Mutual labels:  r-package, rstats
Dataexplorer
Automate Data Exploration and Treatment
Stars: ✭ 362 (+1911.11%)
Mutual labels:  r-package, rstats
Icpsrdata
Reproducible data downloads from the ICPSR data archive
Stars: ✭ 7 (-61.11%)
Mutual labels:  r-package, rstats
Timevis
📅 Create interactive timeline visualizations in R
Stars: ✭ 470 (+2511.11%)
Mutual labels:  r-package, rstats
Assertr
Assertive programming for R analysis pipelines
Stars: ✭ 355 (+1872.22%)
Mutual labels:  r-package, rstats
Skimr
A frictionless, pipeable approach to dealing with summary statistics
Stars: ✭ 889 (+4838.89%)
Mutual labels:  r-package, rstats
Ggextra
📊 Add marginal histograms to ggplot2, and more ggplot2 enhancements
Stars: ✭ 299 (+1561.11%)
Mutual labels:  r-package, rstats
Gtsummary
Presentation-Ready Data Summary and Analytic Result Tables
Stars: ✭ 450 (+2400%)
Mutual labels:  r-package, rstats
Metaflow
🚀 Build and manage real-life data science projects with ease!
Stars: ✭ 5,108 (+28277.78%)
Mutual labels:  r-package, rstats
Tweetbotornot
🤖 R package for detecting Twitter bots via machine learning
Stars: ✭ 355 (+1872.22%)
Mutual labels:  r-package, rstats
Proj
⛔️ [DEPRECATED] R wrapper for proj4js
Stars: ✭ 5 (-72.22%)
Mutual labels:  r-package, rstats
Stplanr
Sustainable transport planning with R
Stars: ✭ 352 (+1855.56%)
Mutual labels:  r-package, rstats
Vitae
R Markdown Résumés and CVs
Stars: ✭ 627 (+3383.33%)
Mutual labels:  r-package, rstats
Pdftools
Text Extraction, Rendering and Converting of PDF Documents
Stars: ✭ 349 (+1838.89%)
Mutual labels:  r-package, rstats
Visdat
Preliminary Exploratory Visualisation of Data
Stars: ✭ 377 (+1994.44%)
Mutual labels:  r-package, rstats
Rhub
R-hub API client
Stars: ✭ 292 (+1522.22%)
Mutual labels:  r-package, rstats
Targets
Function-oriented Make-like declarative workflows for R
Stars: ✭ 293 (+1527.78%)
Mutual labels:  r-package, rstats
Tabulizer
Bindings for Tabula PDF Table Extractor Library
Stars: ✭ 413 (+2194.44%)
Mutual labels:  r-package, rstats
Shinyjs
💡 Easily improve the user experience of your Shiny apps in seconds
Stars: ✭ 566 (+3044.44%)
Mutual labels:  r-package, rstats

patentsview

An R client to the PatentsView API

Linux Build Status AppVeyor Build Status CRAN version Coverage status

Installation

You can get the stable version from CRAN:

install.packages("patentsview")

Or the development version from GitHub:

if (!"devtools" %in% rownames(installed.packages())) 
  install.packages("devtools")

devtools::install_github("ropensci/patentsview")

Basic usage

The PatentsView API 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:

library(patentsview)

search_pv(query = '{"_gte":{"patent_date":"2007-01-01"}}')
#> $data
#> #### A list with a single data frame on a patent level:
#> 
#> List of 1
#>  $ patents:'data.frame': 25 obs. of  3 variables:
#>   ..$ patent_id    : chr [1:25] "10000000" ...
#>   ..$ patent_number: chr [1:25] "10000000" ...
#>   ..$ patent_title : chr [1:25] "Coherent LADAR using intra-pixel quadrature "..
#> 
#> $query_results
#> #### Distinct entity counts across all downloadable pages of output:
#> 
#> total_patent_count = 100,000

Learning more

Head over to the package's webpage for more info, including:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].