diff options
author | Tibor Frank <tifrank@cisco.com> | 2019-05-10 14:31:53 +0200 |
---|---|---|
committer | Tibor Frank <tifrank@cisco.com> | 2019-05-10 14:31:53 +0200 |
commit | 97b7e5fc8b7c1fc8127bc23b383167f04684b5ee (patch) | |
tree | 60bf74d2113179277a1fd44ac2d907f04e302f25 /resources/tools/presentation | |
parent | 03363a60e2b38976aba91b110cd2040e1fda2401 (diff) |
Report: NFV density - diff as integer
Change-Id: Iab093484375418765812707935193b35d8b07d3e
Signed-off-by: Tibor Frank <tifrank@cisco.com>
Diffstat (limited to 'resources/tools/presentation')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index b07f036c1f..b3e28dda8b 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -1490,7 +1490,7 @@ def plot_service_density_heatmap_compare(plot, input_data): val_c = round(val_c / 1000000, 1) data_c[c - 1].append(val_c) if val_d is not None: - val_d = round(val_d, 1) + val_d = int(round(val_d, 0)) diff[c - 1].append(val_d) # Colorscales: |