knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  out.width = "100%"
)

ditiHelper

lifecycle

This package is a wrapper around patentsView package to help students obtain the data in a tidy format.

Installation

You can install the latest version of ditiHelper package from Github with:

``` {r eval = FALSE}

install.packages("remotes")

remotes::install_github("R3myG/ditiHelper")

## Examples

### Get data 

```r
query <- patentsview::with_qfuns(
      or(
        text_all(patent_title = "artificial intelligence"),
        text_all(patent_abstract = "artificial intelligence")
      )
  )

all_dat_patents <- get_patents_data(query)

Get inventors informations

get_inventors_df(all_dat_patents)


R3myG/ditiHelper documentation built on Jan. 30, 2020, 8:38 a.m.