zad4 test15
This commit is contained in:
parent
e0f8992501
commit
4085f90893
@ -8,8 +8,8 @@ i = 0
|
||||
with open('averagesrr.txt','r') as csvfile:
|
||||
plots = csv.reader(csvfile, delimiter=' ')
|
||||
for row in plots:
|
||||
x.append(round(row[0], 2))
|
||||
y.append(i)
|
||||
x.append(float(round(row[0], 2)))
|
||||
y.append(int(i))
|
||||
i=i+1
|
||||
|
||||
plt.plot(x,y, label='SRR')
|
||||
|
@ -8,8 +8,8 @@ i = 0
|
||||
with open('averagewer.txt','r') as csvfile:
|
||||
plots = csv.reader(csvfile, delimiter=' ')
|
||||
for row in plots:
|
||||
x.append(round(row[0], 2))
|
||||
y.append(i)
|
||||
x.append(float(round(row[0], 2)))
|
||||
y.append(int(i))
|
||||
i=i+1
|
||||
|
||||
plt.plot(x,y, label='WER')
|
||||
|
Loading…
Reference in New Issue
Block a user