From e0f89925017a7b9d7f236553f030fa47313e29c5 Mon Sep 17 00:00:00 2001 From: massta Date: Sun, 5 Apr 2020 19:55:01 +0200 Subject: [PATCH] zad4 test14 --- plotsrr.py | 2 +- plotwer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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')