zad4 test17

This commit is contained in:
massta 2020-04-05 20:00:38 +02:00
parent 509b808e29
commit 91e68368be
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@ with open('averagesrr.txt','r') as csvfile:
y.append(int(i))
i=i+1
plt.plot(x,y, label='SRR')
plt.plot(x,y)
plt.xlabel('SRR')
plt.ylabel('Numer')
plt.title('Average plot SRR')

View File

@ -12,7 +12,7 @@ with open('averagewer.txt','r') as csvfile:
y.append(int(i))
i=i+1
plt.plot(x,y, label='WER')
plt.plot(x,y)
plt.xlabel('WER')
plt.ylabel('Numer')
plt.title('Average plot WER')