-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathDVN.py
More file actions
413 lines (368 loc) · 17.3 KB
/
DVN.py
File metadata and controls
413 lines (368 loc) · 17.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
import sqlite3, sys, SQLite, igraph, csv, senGraph, datetime
#TODO:
# calculate unique degree
# consistent rankings for components of the same size
# option to output .sqlite3 files for the three year chunk files ... actually, instead create a separate WHOLE sqlite3 file for invpat & three year files...
# ***** above is completed, just need to test and check
# Option 1: run the script directly from the command line
def time_printer(program_start = 0, calc_start = 0):
now = datetime.datetime.now()
if(program_start):
print "Time elapsed: ", now - program_start
if(calc_start):
print "Calculation time: ", now - calc_start
def DVN_script(filepath = "/home/ayu/DVN/", dbnames = []):
"""
script to create and run DVN object from command line
To run:
python DVN.py <directory> <database names - variable length, separate by spaces>
Example:
python DVN.py /home/ayu/DVN/ invpat citation class patent sciref
(1) Create network data files based on invpat for upload to DVN (graphml format)
(2) Create csv files for data and pre-calculated network measures
network measures calculated:
node measures:
- centrality (degree, eigenvector)
- clustering coefficient
- constraint
- component number and size
"""
t1 = datetime.datetime.now()
print "Start", t1
print filepath
print dbnames
D = DVN(filepath, dbnames)
D.create_graphs()
## Might not include betweenness
## print "calculating node betweenness.."
## D.calculate_node_betweenness()
## print "calculating pagerank..."
## D.calculate_PageRank()
## print "calculating edge betweenness..."
## D.calculate_edge_betweenness()
time_printer(t1)
t2 = datetime.datetime.now()
print "calculating constraint..."
D.calculate_constraint()
time_printer(t1, t2)
t2 = datetime.datetime.now()
print "calculating transitivity..."
D.calculate_clustering_coefficient()
time_printer(t1, t2)
t2 = datetime.datetime.now()
print "calculating component ranking..."
D.calculate_component()
time_printer(t1, t2)
t2 = datetime.datetime.now()
print "calculating eigenvector centrality..."
D.calculate_eigenvector_centrality()
time_printer(t1, t2)
t2 = datetime.datetime.now()
print "calculating degree..."
D.calculate_degree()
time_printer(t1, t2)
t2 = datetime.datetime.now()
## ## Run only once (columns added to invpat db file)
## print "calculating subclasses..."
## D.calculate_subclasses()
## time_printer(t1, t2)
## t2 = datetime.datetime.now()
## print "calculating citation counts..."
## D.calculate_citations()
## time_printer(t1, t2)
## t2 = datetime.datetime.now()
## print "calculating total inventors per patent..."
## D.calculate_inventor_count()
## time_printer(t1, t2)
## t2 = datetime.datetime.now()
## print "calculating non-patent reference counts..."
## D.calculate_sciref()
## time_printer(t1, t2)
## t2 = datetime.datetime.now()
## D.summary()
## print "creating graphml network files"
## D.create_graphml_file()
## time_printer(t1, t2)
## t2 = datetime.datetime.now()
print "creating files"
D.create_csv_file()
time_printer(t1, t2)
print "DONE"
time_printer(t1)
# Option 2: run interactively in Python
# create a DVN object, various functions available within to use and reuse
class DVN():
"""
initialize a DVN object for uploading patent data to the IQSS DVN
"""
def __init__(self, filepath, dbnames, graphml = '', begin = 1975, end = 2010, increment = 3):
"""
takes a filepath string and a list of dbnames
if graphml files already exist, take the list of files and read into graph list as graph objects
ex:
import DVN
D = DVN.DVN(filepath='/home/ayu/DVN/', dbnames=['patent', 'invpat', 'citation', 'class'], graphml = ['pat_2000.graphml', 'pat_2003.graphml'])
D.summary()
D.create_csv_file()
"""
self.filepath = filepath
self.data = {}
self.graphs = {}
self.begin = begin
self.end = end
self.increment = increment
for dbname in dbnames:
self.data[dbname] = SQLite.SQLite(filepath + dbname + '.sqlite3', dbname)
if graphml:
i = 0
for year in range(self.begin, self.end, self.increment):
self.graphs[year] = igraph.Graph.Read_GraphML(filepath+graphml[i])
i = i + 1
def create_graphs(self):
"""
create graphML files from the inventor-patent dataset
for upload to DVN interface (by application year)
inherits the igraph function from the patent team SQLite library
"""
for year in range(self.begin, self.end, self.increment):
print "Creating graph for {year}".format(year=year)
self.graphs[year] = self.data['invpat'].igraph(where='AppYearStr BETWEEN %d AND %d' %
(year, year+2), vx="invnum_N").g
def calculate_node_betweenness(self):
"""calculate betweenness for each node in the network all networks"""
for g in self.graphs.itervalues():
g.vs['betweenness'] = g.betweenness()
def calculate_eigenvector_centrality(self, year='', component=''):
"""calculate eigenvector centrality for each node all networks"""
# calculate eigenvector centrality within each component
if(year):
return self.graphs[year].subgraph(self.graphs[year].vs.
select(component_ranking_eq=component)).eigenvector_centrality()
else:
for g in self.graphs.itervalues():
g.vs['eigenvector_centrality'] = g.eigenvector_centrality()
def calculate_constraint(self):
"""calculate constraint for each node in all networks
"""
for g in self.graphs.itervalues():
g.vs['constraint'] = g.constraint()
def calculate_clustering_coefficient(self):
"""calculate the clustering coefficient (transitivity) for each node in all networks"""
for g in self.graphs.itervalues():
g.vs['clustering_coefficient'] = g.transitivity_local_undirected()
def calculate_degree(self):
"""calculate degree centrality for each node in all networks"""
for g in self.graphs.itervalues():
g.vs['degree'] = g.degree()
# simplify() to get unique degree
g.simplify()
g.vs['unique_degree'] = g.degree()
def calculate_PageRank(self, year='', component=''):
"""calculate pagerank for each node in all networks"""
if(year):
return self.graphs[year].subgraph(self.graphs[year].vs.select(component_eq=component)).pagerank()
else:
for g in self.graphs.itervalues():
g.vs['PageRank'] = g.pagerank()
def calculate_edge_betweenness(self):
"""calculate edge betweennness for all edges
"""
for g in self.graphs.itervalues():
g.es['betweenness'] = g.edge_betweenness()
def calculate_component(self):
"""within each graph, calculate the component ranking and size that each node belongs to
"""
for g in self.graphs.itervalues():
print g
clusters = g.clusters()
mem = clusters.membership
sizes = clusters.sizes()
com = [[size,idx] for idx,size in enumerate(sizes)]
com.sort(reverse=True) #now the list is assorted descending by size
components = {}
# this was added
size = com[0][0]
rank = 0
# --- end of added part
for i,c in enumerate(com):
if size != c[0]:
size = c[0]
rank = rank + 1
#components[c[1]] = [i, c[0]] #each element is {component index:[component rank, component size]}
#give each component with same size same ranking!
components[c[1]] = [rank, size]
component_rankings = [components[m][0] for m in mem]
component_sizes = [components[m][1] for m in mem]
g.vs['component_ranking'] = component_rankings
g.vs['component_size'] = component_sizes
def calculate_subclasses(self):
"""calculate the number of subclasses per patent
SQL:
select patent, count(subclass) as num_subclasses from class group by patent
"""
self.data['invpat'].add('num_subclasses', 'INT')
self.data['class'].c.execute("select count(subclass), patent from class group by patent")
count = self.data['class'].c.fetchall()
print count[:10]
self.data['invpat'].c.executemany("UPDATE invpat SET num_subclasses=? WHERE patent=?", count)
self.data['invpat'].conn.commit()
def calculate_citations(self):
"""calculate the number of forward and backward citations per patent
SQL:
select patent, count(patent) as RefBy from citation group by patent
select patent, count(citation) as RefCited from citation group by patent
"""
self.data['invpat'].add('RefBy', 'INT') # backward_cites changed to 'RefBy'
self.data['invpat'].add('RefCited', 'INT') # forward_cites changed to 'RefCited'
self.data['citation'].c.execute("select count(patent), citation from citation group by citation")
self.data['invpat'].c.executemany("UPDATE invpat SET RefBy=? WHERE patent=?", self.data['citation'].c.fetchall())
self.data['invpat'].conn.commit()
self.data['invpat'].c.execute("UPDATE invpat SET RefBy=0 WHERE RefBy IS NULL")
self.data['invpat'].conn.commit()
self.data['citation'].c.execute("select count(citation), patent from citation group by patent")
self.data['invpat'].c.executemany("UPDATE invpat SET RefCited=? WHERE patent=?", self.data['citation'].c.fetchall())
self.data['invpat'].conn.commit()
self.data['invpat'].c.execute("UPDATE invpat SET RefCited=0 WHERE RefCited IS NULL")
self.data['invpat'].conn.commit()
def calculate_inventor_count(self):
"""calculate total number of inventors per patent and add data to totalInventors column
"""
self.data['invpat'].add('totalInventors', 'INT')
self.data['invpat'].c.execute("select count(distinct invnum_N), patent from invpat group by patent")
self.data['invpat'].c.executemany("UPDATE invpat SET totalInventors=? WHERE patent=?", self.data['invpat'].c.fetchall())
self.data['invpat'].conn.commit()
def calculate_sciref(self):
"""calculate total number of non-patent references per patent and add data to scirefcnt column
note: not all patents have non-patent references!
"""
self.data['invpat'].add('scirefcnt', 'INT')
self.data['sciref'].c.execute("select count(*), patent from sciref group by patent")
self.data['invpat'].c.executemany("UPDATE invpat SET scirefcnt=? WHERE patent=?", self.data['sciref'].c.fetchall())
self.data['invpat'].conn.commit()
self.data['invpat'].c.execute("UPDATE invpat SET scirefcnt=0 WHERE scirefcnt IS NULL")
self.data['invpat'].conn.commit()
def get_graph(self, year):
"""returns the igraph object for the given year
"""
return self.graphs[year]
def get_size(self, year=2000, component=''):
"""returns the number of vertices in the given component for the given year
if no component given, by default returns the number of vertices in the whole graph by year
"""
if(component != ''):
return len(self.graphs[year].vs.select(component_ranking_eq=component))
else:
return len(self.graphs[year].vs)
def create_graphml_file(self, year=''):
"""if year is specified, create graphml file for that specific year
else create graphml for all years in current directory
"""
if self.graphs.get(year):
self.graphs[year].save((self.filepath + "pat_{year}_oc.graphml").format(year=year))
else:
for k,v in self.graphs.iteritems():
v.save((self.filepath +"pat_{year}_oc.graphml").format(year=k))
def summary(self):
"""print a summary of the DVN object, also prints summary network statistics per graph
"""
dnames = [k for k in self.data.iterkeys()]
gnames = [k for k in self.graphs.iterkeys()]
print "=========================SUMMARY========================="
print """
Databases used : {dnames}
Network graphs (by appyear): {gnames}
""".format(dnames=dnames, gnames=gnames)
if len(self.graphs) > 0:
print "=========================GRAPHS=========================="
for k,v in self.graphs.iteritems():
print "Graph: {gname}".format(gname=str(k))
#igraph.summary(v)
print "Node attributes: {v}".format(v=v.vertex_attributes())
print "Edge attributes: {e}".format(e=v.edge_attributes())
print "---------------------------------------------------------"
def close_data(self):
# close all sqlite objects
for d in self.data.itervalues():
d.close()
def create_csv_file(self):
"""
create csv data file for upload to DVN interface
"""
import unicodedata
def asc(val):
return [unicodedata.normalize('NFKD', unicode(x)).encode('ascii', 'ignore') for x in val]
for year in range(self.begin, self.end, self.increment):
#create a temporary table in memory to hold all data for each three year period
#conn = sqlite3.connect(":memory:")
#create a sqlite3 file for each invpat_temp
conn = sqlite3.connect("/home/ayu/DVN/lower_results/invpat{year}_oc.sqlite3".format(year=year))
conn.executescript("""
CREATE TABLE invpat_temp(
Firstname TEXT,
Lastname TEXT,
Street TEXT,
City TEXT,
State TEXT,
Country TEXT,
Zipcode TEXT,
Lat REAL,
Lon REAL,
InvSeq INT,
Patent TEXT,
GYear INT,
AppYear TEXT,
AppDate TEXT,
Assignee TEXT,
AsgNum INT,
Class TEXT,
Invnum TEXT,
Invnum_N TEXT,
num_subclasses INT,
scirefcnt INT,
RefBy INT,
RefCited INT,
totalInventors INT,
eigenvector_centrality REAL,
node_constraint REAL,
degree INT,
unique_degree INT,
component_ranking INT,
component_size INT,
clustering_coefficient REAL
);
CREATE INDEX idx_invnumN on invpat_temp(invnum_N);
CREATE INDEX inx_patent on invpat_temp(patent);
""")
snippet = self.data['invpat'].c.execute("""select firstname, lastname, street, city, state, country, zipcode, lat, lon, invseq, patent,
gyear, appyearstr, appdatestr, assignee, asgnum, class, invnum, invnum_N, num_subclasses, scirefcnt, RefBy, RefCited, totalInventors
from invpat where appyearstr between %d AND %d""" % (year, year+2)).fetchall()
conn.executemany("""INSERT INTO invpat_temp (firstname, lastname, street, city, state, country, zipcode, lat, lon, invseq, patent, gyear, appyear, appdate, assignee, asgnum, class,
invnum, invnum_N, num_subclasses, scirefcnt, RefBy, RefCited, totalInventors) VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)""", snippet)
# plus the network measures
n = []
for i in self.graphs[year].vs:
n.append((i['degree'], i['unique_degree'], i['constraint'], i['component_ranking'], i['component_size'], i['eigenvector_centrality'],
i['clustering_coefficient'], i['inventor_id']))
conn.executemany("""UPDATE invpat_temp SET degree = ?, unique_degree = ?, node_constraint = ?, component_ranking = ?, component_size = ?,
eigenvector_centrality = ?,clustering_coefficient = ? WHERE Invnum_N = ?""", n)
conn.commit()
# write the temp table to the file
## fname = self.filepath + "invpat{year}_oc.csv".format(year=year)
## print "Creating {f}".format(f=fname)
## f = open(fname, "wb")
## writer = csv.writer(f, lineterminator="\n")
## writer.writerows([[x[1] for x in conn.execute("PRAGMA table_info(invpat_temp)").fetchall()]])
## writer.writerows([asc(x) for x in conn.execute("select * from invpat_temp").fetchall()])
## writer = None
## f.close()
conn.close()
self.close_data()
if __name__ == "__main__":
import sys
if len(sys.argv) > 1:
if(sys.argv[1] == 'help' or sys.argv[1] == '?'):
print DVN_script.__doc__
else:
DVN_script(sys.argv[1], sys.argv[2:])
else:
print "Please provide database filepath or enter ? or help for more info"