Add 68% error bars

This commit is contained in:
Noe Brucy
2020-03-15 10:25:59 +01:00
parent c2f866b37f
commit b8f85b1386
2 changed files with 18 additions and 3 deletions
+3
View File
@@ -668,6 +668,9 @@ class Plotter(Aggregator, BaseProcessor):
elif yerr_kind == "95per":
yerr_min = node_y.q025.read() * yunit_old.express(yunit)
yerr_max = node_y.q975.read() * yunit_old.express(yunit)
elif yerr_kind == "68per":
yerr_min = node_y.q16.read() * yunit_old.express(yunit)
yerr_max = node_y.q84.read() * yunit_old.express(yunit)
else:
yerr_min = y
yerr_max = y