Fix chart generation
This commit is contained in:
parent
b32605abe9
commit
1490549284
@ -10,6 +10,7 @@ y = []
|
|||||||
if os.path.exists('bulk_metrics.txt'):
|
if os.path.exists('bulk_metrics.txt'):
|
||||||
with open('bulk_metrics.txt') as file:
|
with open('bulk_metrics.txt') as file:
|
||||||
for line in file.readlines():
|
for line in file.readlines():
|
||||||
|
print(line.split(" "))
|
||||||
single_x, single_y = line.split(" ")
|
single_x, single_y = line.split(" ")
|
||||||
x.append(single_x)
|
x.append(single_x)
|
||||||
y.append(single_y)
|
y.append(single_y)
|
||||||
|
@ -14,4 +14,4 @@ if os.path.exists("rmse.txt"):
|
|||||||
result = line
|
result = line
|
||||||
|
|
||||||
with open("bulk_metrics.txt", "a") as file:
|
with open("bulk_metrics.txt", "a") as file:
|
||||||
file.write(build_no + " " + result + "\n")
|
file.write(build_no + " " + result)
|
||||||
|
Loading…
Reference in New Issue
Block a user