Commit d6f8faad authored by lintangsutawika's avatar lintangsutawika
Browse files

allow N/A as a possible value for Stderr

parent 91279a6e
......@@ -371,7 +371,9 @@ def make_table(result_dict, column: str = "results"):
if m + "_stderr" + "," + f in dic:
se = dic[m + "_stderr" + "," + f]
values.append([k, version, f, n, m, "%.4f" % v, "±", "%.4f" % se])
if se != "N/A":
se = "%.4f" % se
values.append([k, version, f, n, m, "%.4f" % v, "±", se])
else:
values.append([k, version, f, n, m, "%.4f" % v, "", ""])
k = ""
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment