plot 21
This commit is contained in:
parent
b38c155584
commit
90b689a62e
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user