diff options
Diffstat (limited to 'resources/tools/presentation/generator_plots.py')
-rw-r--r-- | resources/tools/presentation/generator_plots.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/tools/presentation/generator_plots.py b/resources/tools/presentation/generator_plots.py index 0e0faff5bc..3cbd35c430 100644 --- a/resources/tools/presentation/generator_plots.py +++ b/resources/tools/presentation/generator_plots.py @@ -1822,7 +1822,7 @@ def plot_service_density_heatmap(plot, input_data): stdev=None) try: if plot["include-tests"] == "MRR": - result = test["result"]["receive-rate"].avg + result = test["result"]["receive-rate"] # .avg elif plot["include-tests"] == "PDR": result = test["throughput"]["PDR"]["LOWER"] elif plot["include-tests"] == "NDR": @@ -2110,7 +2110,7 @@ def plot_service_density_heatmap_compare(plot, input_data): stdev_c=None) try: if plot["include-tests"] == "MRR": - result = test["result"]["receive-rate"].avg + result = test["result"]["receive-rate"] # .avg elif plot["include-tests"] == "PDR": result = test["throughput"]["PDR"]["LOWER"] elif plot["include-tests"] == "NDR": |