Mercurial > hg > webaudioevaluationtool
comparison scripts/score_plot.py @ 1075:056a8454500e
Bug fixes in scripts: display plays in last timeline segment of each fragment (post last move); call sub-processes of generate_report.py in same folder (pass on argument); indentation in LaTeX file.
author | Brecht De Man <BrechtDeMan@users.noreply.github.com> |
---|---|
date | Wed, 16 Sep 2015 13:31:40 +0100 |
parents | 2ea78697aadf |
children | 235594325b84 |
comparison
equal
deleted
inserted
replaced
1074:2b8c36924bfd | 1075:056a8454500e |
---|---|
74 elif arg == 'leg' or arg == 'legend' or arg == '-l': | 74 elif arg == 'leg' or arg == 'legend' or arg == '-l': |
75 if not enable_individual: | 75 if not enable_individual: |
76 print "WARNING: The 'legend' option is only relevant to plots of "+\ | 76 print "WARNING: The 'legend' option is only relevant to plots of "+\ |
77 "individual ratings" | 77 "individual ratings" |
78 show_legend = True # show all individual ratings | 78 show_legend = True # show all individual ratings |
79 elif arg.isnumeric(): | 79 elif arg.isdigit(): |
80 if not enable_confidence: | 80 if not enable_confidence: |
81 print "WARNING: The numeric confidence value is only relevant when "+\ | 81 print "WARNING: The numeric confidence value is only relevant when "+\ |
82 "confidence plot is enabled" | 82 "confidence plot is enabled" |
83 if float(arg)>0 and float(arg)<1: | 83 if float(arg)>0 and float(arg)<1: |
84 confidence = float(arg) | 84 confidence = float(arg) |