Add 68% error bars
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user