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')