-
Notifications
You must be signed in to change notification settings - Fork 1
/
graphing.py
146 lines (117 loc) · 4.47 KB
/
graphing.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
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
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import csv
LEGEND_FONT_SIZE = 12
LEGEND_COLUMN_SPACING = 0.5
LEGEND_ALPHA = 0.2
class LineGraph(object):
def __init__ (self, points, label, error_bar=None):
self.points = points
self.error = error_bar
self.label = label
tableau = [(31, 119, 180), (255, 127, 14), (44, 160, 44), (214, 39, 40),
(148, 103, 189), (140, 86, 75), (227, 119, 194), (127, 127, 127),
(188, 189, 34), (23, 190, 207)]
for i in range(len(tableau)):
r, g, b = tableau[i]
tableau[i] = (r / 255., g / 255., b / 255.)
def create_line_graph(name, lines, xlabel, ylabel, legend=True, legend_loc=0):
plt.clf()
t = None
plt.figure(figsize=(10.00, 4.00))
for idx, line in enumerate(lines):
print line.label
c = tableau[idx % len(tableau)]
t, = plt.plot(line.points, label=line.label, color=c)
if line.error is not None:
arr = []
for i in range(0, len(line.points)):
arr.append(i)
plt.errorbar(arr, line.points, yerr=line.error, linestyle="None", marker="None", color=c)
plt.ylabel(ylabel)
plt.xlabel(xlabel)
xaxis = max([len(l.points) for l in lines])
print 'x-axis: ' + str(xaxis)
plt.xlim([min([0] + [xaxis]), xaxis])
if legend:
legend = plt.legend(loc=legend_loc,
prop={'size':LEGEND_FONT_SIZE},
fancybox=True,
ncol=3,
columnspacing=LEGEND_COLUMN_SPACING)
legend.get_frame().set_alpha(LEGEND_ALPHA)
plt.tight_layout()
plt.savefig(name + '.pdf', format='pdf')
def create_line_graph_from_csv(
csvname, keys, xlabel, ylabel, legend=True,
labels=None, legend_loc=0, order_by=None, outname=None):
results = {}
lines = []
duplicates_exist = lambda x: False if len(x) == len(set(x)) else True
if duplicates_exist(keys):
raise Exception('Duplicate keys found')
if labels is not None:
if duplicates_exist(labels):
raise Exception('Duplicate labels found')
if labels is not None and len(keys) != len(labels):
raise Exception('keys and labels lengths did not match.')
for k in keys:
results[str(k)] = []
ordering = None if order_by is None else lambda k: int(k[order_by])
with open(csvname, 'rb') as f:
reader = csv.DictReader(f)
for row in sorted(reader, key=ordering):
for k in results.keys():
results[k].append(row[k])
for idx, key in enumerate(keys):
if labels:
lines.append(LineGraph(results[key], labels[idx]))
else:
lines.append(LineGraph(results[key], str(key)))
name = ''
if outname is None:
name = csvname.replace('.csv', '')
else:
name = outname
create_line_graph(name, lines, xlabel, ylabel,
legend=legend, legend_loc=legend_loc)
def create_line_graph_from_csvs(
csvnames, keys, xlabel, ylabel, error_bar=None, legend=True,
labels=None, legend_loc=0, order_by=None, outname=None):
results = {}
lines = []
for csvn in csvnames:
for k in keys:
results[(csvn, str(k))] = []
for k in results.keys():
print k
ordering = None if order_by is None else lambda k: int(k[order_by])
for fidx, csvn in enumerate(csvnames):
err = []
with open(csvn, 'rb') as f:
reader = csv.DictReader(f)
for row in sorted(reader, key=ordering):
for k in keys:
results[(csvn, str(k))].append(float(row[k]))
if error_bar is not None:
err.append(float(row[error_bar]))
if error_bar is not None:
for idx, key in enumerate(keys):
if labels:
lines.append(LineGraph(results[(csvn, str(k))], labels[fidx][idx], error_bar=err))
else:
lines.append(LineGraph(results[(csvn, str(k))], str(key), error_bar=err))
else:
for idx, key in enumerate(keys):
if labels:
lines.append(LineGraph(results[(csvn, str(k))], labels[fidx][idx]))
else:
lines.append(LineGraph(results[(csvn, str(k))], str(key)))
name = ''
if outname is None:
name = csvname.replace('.csv', '')
else:
name = outname
create_line_graph(name, lines, xlabel, ylabel,
legend=legend, legend_loc=legend_loc)