Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some patents missing assignee data #28

Open
crew102 opened this issue Jun 28, 2018 · 1 comment
Open

Some patents missing assignee data #28

crew102 opened this issue Jun 28, 2018 · 1 comment

Comments

@crew102
Copy link

crew102 commented Jun 28, 2018

Hi -

It looks like some patents are not associated with their "original assignees" in the patentsview bulk data files. For example, according to http://patft.uspto.gov/netahtml/PTO/search-bool.html, patent numbers 4619896, 6255456, and 9623304 are all associated with an original assignee, but when we look in the relevant patentsview file we see that these patents are not associated with any assignees:

library(httr)
library(data.table)

raw_assignee <- tempfile()
temp_dir <- dirname(raw_assignee)

GET(
  "http://www.patentsview.org/data/20171226/rawassignee.tsv.zip",
  write_disk(raw_assignee)
)
unzip(raw_assignee, exdir = temp_dir)

data <- fread(
  file.path(temp_dir, "rawassignee.tsv"),
  sep = "\t", colClasses = "character"
)

nrow(data[data$patent_id %in% c("4619896", "6255456", "9623304"), ])
#> [1] 0

I looked briefly in the raw data files from uspto and it looks like these patents are associated with original assignees in those files as well.

@sarahkelley
Copy link
Contributor

This does look like a problem! Thanks for bring this to our attention, we will look into it an let you know what we find.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants