This commit is contained in:
alicja.m.musial 2020-04-03 21:02:38 +02:00
parent b38c155584
commit 90b689a62e

View File

@ -12,7 +12,7 @@ def createplotWER():
y = readFile('werForPlot.txt', y)
fig, ax = plt.subplots()
ax.plot(range(1, len(y) + 1)), y)
ax.plot(list(range(1, len(y) + 1)), y)
ax.set(xlabel='Build number', ylabel='Percent [%]',
title='Metric for ASR')
ax.grid()
@ -26,7 +26,7 @@ def createplotSRR():
y = readFile('srrForPlot.txt', y)
fig, ax = plt.subplots()
ax.plot(range(1, len(y) + 1)), y)
ax.plot(list(range(1, len(y) + 1)), y)
ax.set(xlabel='Build number', ylabel='Percent [%]',
title='Metric for ASR')
ax.grid()