From feeaae192b932b319c7916480dc6ea2a4f2a357a Mon Sep 17 00:00:00 2001 From: massta Date: Sun, 5 Apr 2020 20:16:41 +0200 Subject: [PATCH] zad4 test20 --- plotsrr.py | 4 ++-- plotwer.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plotsrr.py b/plotsrr.py index c558d2c..3cb88c9 100644 --- a/plotsrr.py +++ b/plotsrr.py @@ -6,7 +6,7 @@ import csv x = [] y = [] -i = 0 +i = 1 with open('averagesrr.txt','r') as csvfile: plots = csv.reader(csvfile, delimiter=' ') @@ -17,7 +17,7 @@ with open('averagesrr.txt','r') as csvfile: plt.plot(x,y) plt.ylabel('SRR') -plt.xlabel('Numer') +plt.xlabel('Build number') plt.title('Average plot SRR') plt.legend() plt.savefig('plotsrr.png') diff --git a/plotwer.py b/plotwer.py index 6dda0b8..42954e6 100644 --- a/plotwer.py +++ b/plotwer.py @@ -6,7 +6,7 @@ import csv x = [] y = [] -i = 0 +i = 1 with open('averagewer.txt','r') as csvfile: plots = csv.reader(csvfile, delimiter=' ') @@ -17,7 +17,7 @@ with open('averagewer.txt','r') as csvfile: plt.plot(x,y) plt.ylabel('WER') -plt.xlabel('Numer') +plt.xlabel('Build number') plt.title('Average plot WER') plt.legend() plt.savefig('plotwer.png')