2020-04-05 20:03:21 +02:00
|
|
|
import matplotlib
|
|
|
|
matplotlib.use('Agg')
|
|
|
|
|
2020-04-05 18:31:32 +02:00
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
import csv
|
|
|
|
|
|
|
|
x = []
|
|
|
|
y = []
|
2020-04-05 20:16:41 +02:00
|
|
|
i = 1
|
2020-04-05 18:31:32 +02:00
|
|
|
|
|
|
|
with open('averagewer.txt','r') as csvfile:
|
|
|
|
plots = csv.reader(csvfile, delimiter=' ')
|
|
|
|
for row in plots:
|
2020-04-05 20:12:48 +02:00
|
|
|
y.append(float(row[0]))
|
|
|
|
x.append(int(i))
|
2020-04-05 18:31:32 +02:00
|
|
|
i=i+1
|
|
|
|
|
2020-04-05 20:00:38 +02:00
|
|
|
plt.plot(x,y)
|
2020-04-05 20:21:36 +02:00
|
|
|
plt.ylabel('WER (%)')
|
2020-04-05 20:16:41 +02:00
|
|
|
plt.xlabel('Build number')
|
2020-04-05 20:21:36 +02:00
|
|
|
plt.title('Plot of average WER')
|
2020-04-05 18:31:32 +02:00
|
|
|
plt.legend()
|
|
|
|
plt.savefig('plotwer.png')
|