comparison scripts/score_boxplot.py @ 1025:a90495a060de

Scripts: in score plots (individual and boxplot), remove extra marker in legend; automatically save plot.
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Sat, 06 Jun 2015 11:54:43 +0100
parents 4a0bfa7bef24
children 4e9ab4f92f20
comparison
equal deleted inserted replaced
1024:75302b775a4d 1025:a90495a060de
62 plt.xticks(range(1, len(headerrow)+1), headerrow) # show fragment names 62 plt.xticks(range(1, len(headerrow)+1), headerrow) # show fragment names
63 63
64 plt.ylabel('Rating') 64 plt.ylabel('Rating')
65 plt.ylim(0,1) 65 plt.ylim(0,1)
66 66
67 plt.show() 67 #plt.show() # show plot
68 #exit() 68 #exit()
69 69
70 #TODO Save output automatically 70 plt.savefig(rating_folder+page_name+"-ind.png")
71