import matplotlib.pyplot as plt import csv x = [] y = [] i = 0 with open('averagewer.txt','r') as csvfile: plots = csv.reader(csvfile, delimiter=' ') for row in plots: x.append(round(row[0], 2)) y.append(i) i=i+1 plt.plot(x,y, label='WER') plt.xlabel('WER') plt.ylabel('Numer') plt.title('Wykres średni WER') plt.legend() plt.savefig('plotwer.png')