Mercurial > hg > webaudioevaluationtool
comparison scripts/score_plot.py @ 1072:2ea78697aadf
Scripts: comment_parser and score_parser start new CSV files each time; various plots added to generated PDF report
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Thu, 20 Aug 2015 11:29:29 +0200 |
parents | 8d0061336b90 |
children | 056a8454500e |
comparison
equal
deleted
inserted
replaced
1071:e2dd3105a84c | 1072:2ea78697aadf |
---|---|
212 | 212 |
213 # TITLE, AXIS LABELS AND LIMITS | 213 # TITLE, AXIS LABELS AND LIMITS |
214 plt.title(page_name) | 214 plt.title(page_name) |
215 plt.xlabel('Fragment') | 215 plt.xlabel('Fragment') |
216 plt.xlim(0, len(headerrow)+1) # only show relevant region, leave space left & right) | 216 plt.xlim(0, len(headerrow)+1) # only show relevant region, leave space left & right) |
217 plt.xticks(range(1, len(headerrow)+1), headerrow) # show fragment names | 217 plt.xticks(range(1, len(headerrow)+1), headerrow, rotation=90) # show fragment names |
218 plt.ylabel('Rating') | 218 plt.ylabel('Rating') |
219 plt.ylim(0,1) | 219 plt.ylim(0,1) |
220 | 220 |
221 | 221 |
222 | 222 |