-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmerge.py
64 lines (61 loc) · 1.96 KB
/
merge.py
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
import os
import csv
directory = "Test_features/accel_walking_return/"
counter = 1
for filename in os.listdir(directory):
print(counter)
filename = directory + "/" + filename
dictionary = {}
with open(filename) as f:
for line in f:
line = line.strip("\n").split(",")
dictionary[line[0]] = line[1]
#print(line)
#print(dictionary.keys())
newlines = []
walk = open("Test_Walking (copy).csv", 'r')
lines = csv.reader(walk, delimiter=',')
#print(lines)
firstline = 0
for line in lines:
line = ','.join(line)
test = line.strip("\n").split(",")
#print(line)
newline = ""
if( counter == 0 ):
if( firstline == 0 ):
newline = test[2] + "," + filename.split("/")[-1].split(".")[0]
firstline = 1
else:
#print(test)
#print(test[2])
if(test[2] in dictionary.keys()):
#print("Hello")
newline = test[2] + "," + dictionary[test[2]]
else:
newline = test[2] + ",0"
#print(newline)
newlines.append(newline)
else:
if( firstline == 0 ):
newline = line + "," + filename.split("/")[-1].split(".")[0]
firstline = 1
else:
#print(test)
#print(test[2])
if(test[0] in dictionary.keys()):
#print("Hello")
newline = line + "," + dictionary[test[0]]
else:
newline = line + ",0"
#print(newline)
newlines.append(newline)
counter+=1
walk.close()
#print('\n'.join(newlines))
walk_w = open("Test_Walking (copy).csv", 'w')
#writer = csv.writer(walk_w)
for line in newlines:
#writer.writerow([line])
walk_w.write(line + "\n")
walk_w.close()