diff --git a/plotsrr.py b/plotsrr.py index f87b575..e19ffcf 100644 --- a/plotsrr.py +++ b/plotsrr.py @@ -15,6 +15,6 @@ with open('averagesrr.txt','r') as csvfile: plt.plot(x,y, label='SRR') plt.xlabel('SRR') plt.ylabel('Numer') -plt.title('Wykres średni SRR') +plt.title('Average plot SRR') plt.legend() plt.savefig('plotsrr.png') diff --git a/plotwer.py b/plotwer.py index 2597f13..3680160 100644 --- a/plotwer.py +++ b/plotwer.py @@ -15,6 +15,6 @@ with open('averagewer.txt','r') as csvfile: plt.plot(x,y, label='WER') plt.xlabel('WER') plt.ylabel('Numer') -plt.title('Wykres średni WER') +plt.title('Average plot WER') plt.legend() plt.savefig('plotwer.png')