zad4 test21

This commit is contained in:
massta 2020-04-05 20:21:36 +02:00
parent feeaae192b
commit 73d58d32d9
2 changed files with 4 additions and 4 deletions

View File

@ -16,8 +16,8 @@ with open('averagesrr.txt','r') as csvfile:
i=i+1 i=i+1
plt.plot(x,y) plt.plot(x,y)
plt.ylabel('SRR') plt.ylabel('SRR (%)')
plt.xlabel('Build number') plt.xlabel('Build number')
plt.title('Average plot SRR') plt.title('Plot of average SRR')
plt.legend() plt.legend()
plt.savefig('plotsrr.png') plt.savefig('plotsrr.png')

View File

@ -16,8 +16,8 @@ with open('averagewer.txt','r') as csvfile:
i=i+1 i=i+1
plt.plot(x,y) plt.plot(x,y)
plt.ylabel('WER') plt.ylabel('WER (%)')
plt.xlabel('Build number') plt.xlabel('Build number')
plt.title('Average plot WER') plt.title('Plot of average WER')
plt.legend() plt.legend()
plt.savefig('plotwer.png') plt.savefig('plotwer.png')