From 6c8ba1c706a4e9e467ab5e2a4b676b9016f9e610 Mon Sep 17 00:00:00 2001 From: Tibor Frank Date: Tue, 29 Jun 2021 13:58:59 +0200 Subject: Report: Implement changes from job-specs Change-Id: Id9497ae02eb47fed40b9e4c33b98a81c34b71964 Signed-off-by: Tibor Frank --- resources/tools/presentation/generator_plots.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'resources/tools/presentation/generator_plots.py') diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 8161a5a566..e674a3e5c8 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -664,7 +664,7 @@ def plot_perf_box_name(plot, input_data): try: val_max = max(df_y[col]) if val_max: - y_max.append(int(val_max / 1e6) + 2) + y_max.append(int(val_max / 1e6)) except (ValueError, TypeError) as err: logging.error(repr(err)) continue @@ -683,8 +683,8 @@ def plot_perf_box_name(plot, input_data): layout[u"yaxis"][u"title"] = u"Connection Rate [Mrps]" else: layout[u"title"] = f"Throughput: {layout[u'title']}" - if y_max: - layout[u"yaxis"][u"range"] = [0, max(y_max)] + if y_max and max(y_max) > 1: + layout[u"yaxis"][u"range"] = [0, max(y_max) + 2] plpl = plgo.Figure(data=traces, layout=layout) # Export Plot -- cgit 1.2.3-korg