summaryrefslogtreecommitdiff
path: root/stats
diff options
context:
space:
mode:
authorMartin Peres <martin.peres@linux.intel.com>2015-07-27 17:47:05 +0300
committerMartin Peres <martin.peres@linux.intel.com>2015-07-27 17:47:05 +0300
commit002491484edde8743f00943c959db8e3efb5facb (patch)
tree0acef33603a940cb6acb9d2ef3a3c97d3db31dd7 /stats
parent127fd9e422a97f6d3f957b6b9d22166363b0a5c7 (diff)
stats/gen_report: fix the ylabel of the trend graph
Diffstat (limited to 'stats')
-rwxr-xr-xstats/gen_report.py2
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])