blob: 6339d5d959841f30d7d3c4f5751378f360ce314b (
plain)
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
|
####
##
## Get two rankings and compute the size of the k-intersection,
## i.e. the number of elements which are present in the first k
## positions of both rankings, as a function of k
##
##
import sys
if len(sys.argv)< 4:
print "Usage: %s <file1> <file2> <increment>" % sys.argv[0]
sys.exit(1)
incr = int(sys.argv[3])
rank1 = []
rank2 = []
lines = open(sys.argv[1], "r").readlines()
for l in lines:
n= l.strip(" \n").split(" ")[0]
rank1.append(n)
lines = open(sys.argv[2], "r").readlines()
for l in lines:
n= l.strip(" \n").split(" ")[0]
rank2.append(n)
N = len(rank1)
i = incr
while i < N+incr:
l = len(set(rank1[:i]) & set(rank2[:i]))
print i, l
i += incr
|