Showing
2 changed files
with
1 additions
and
1 deletions
... | @@ -95,7 +95,7 @@ if __name__ == '__main__': | ... | @@ -95,7 +95,7 @@ if __name__ == '__main__': |
95 | plt.plot(scoresTable['CV'], 'ro--', label='CV' , linewidth=1, markersize=6) | 95 | plt.plot(scoresTable['CV'], 'ro--', label='CV' , linewidth=1, markersize=6) |
96 | for k,v in dict(scoresTable).items(): | 96 | for k,v in dict(scoresTable).items(): |
97 | for a,b in zip(range(64), v): | 97 | for a,b in zip(range(64), v): |
98 | - plt.text(a-0.5, float(b)+0.0020, b[0:7], fontsize=5) | 98 | + plt.text(a-0.5, float(b)+0.0020, b[0:5], fontsize=5) |
99 | plt.legend(loc='upper left') | 99 | plt.legend(loc='upper left') |
100 | plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) | 100 | plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) |
101 | fig.savefig(imageName, bbox_inches='tight', pad_inches = 0.3) | 101 | fig.savefig(imageName, bbox_inches='tight', pad_inches = 0.3) | ... | ... |
-
Please register or login to post a comment