diff options
author | Martin Peres <martin.peres@linux.intel.com> | 2015-07-27 17:47:05 +0300 |
---|---|---|
committer | Martin Peres <martin.peres@linux.intel.com> | 2015-07-27 17:47:05 +0300 |
commit | 002491484edde8743f00943c959db8e3efb5facb (patch) | |
tree | 0acef33603a940cb6acb9d2ef3a3c97d3db31dd7 /stats | |
parent | 127fd9e422a97f6d3f957b6b9d22166363b0a5c7 (diff) |
stats/gen_report: fix the ylabel of the trend graph
Diffstat (limited to 'stats')
-rwxr-xr-x | stats/gen_report.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stats/gen_report.py b/stats/gen_report.py index 094beaa..403d789 100755 --- a/stats/gen_report.py +++ b/stats/gen_report.py @@ -181,7 +181,7 @@ def getResultsBenchmarkDiffs(benchmark): print("Generating the trend graph") f = plt.figure(figsize=(17,3)) plt.xlabel('Commit #') -plt.ylabel('Perf. diff. with the prev. commit (%)') +plt.ylabel('Perf. diff. with the first commit (%)') plt.grid(True) for i in range(len(benchmarks)): data = getResultsBenchmarkDiffs(benchmarks[i]) |