s452108-mlworkshops/plotsrr.py
2020-04-05 20:16:41 +02:00

24 lines
413 B
Python

import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import csv
x = []
y = []
i = 1
with open('averagesrr.txt','r') as csvfile:
plots = csv.reader(csvfile, delimiter=' ')
for row in plots:
y.append(float(row[0]))
x.append(int(i))
i=i+1
plt.plot(x,y)
plt.ylabel('SRR')
plt.xlabel('Build number')
plt.title('Average plot SRR')
plt.legend()
plt.savefig('plotsrr.png')