Showing
2 changed files
with
5 additions
and
5 deletions
... | @@ -88,12 +88,12 @@ if __name__ == '__main__': | ... | @@ -88,12 +88,12 @@ if __name__ == '__main__': |
88 | plt.ylabel("score") | 88 | plt.ylabel("score") |
89 | plt.rcParams.update() | 89 | plt.rcParams.update() |
90 | plt.grid() | 90 | plt.grid() |
91 | - plt.plot(scoresTable['precision'],'o--', label='precision', linewidth=3, markersize=8) | 91 | + plt.plot(scoresTable['precision'],'o--', label='precision', linewidth=1, markersize=8) |
92 | - plt.plot(scoresTable['f1-score'], 'o--', label='F1', linewidth=3, markersize=8) | 92 | + plt.plot(scoresTable['f1-score'], 'o--', label='F1', linewidth=1, markersize=8) |
93 | - plt.plot(scoresTable['recall'], 'o--', label='recall' , linewidth=3, markersize=8) | 93 | + plt.plot(scoresTable['recall'], 'o--', label='recall' , linewidth=1, markersize=8) |
94 | - plt.plot(scoresTable['CV'], 'o--', label='CV' , linewidth=3, markersize=8) | 94 | + plt.plot(scoresTable['CV'], 'o--', label='CV' , linewidth=1, markersize=8) |
95 | plt.legend(loc='lower right') | 95 | plt.legend(loc='lower right') |
96 | - plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90) | 96 | + plt.xticks(range(64), list(scoresTable.index)[0:65], rotation=90, fontsize=8) |
97 | #print(type(scoresTable.index)) | 97 | #print(type(scoresTable.index)) |
98 | #print(list(scoresTable.index)) | 98 | #print(list(scoresTable.index)) |
99 | #print(list(scoresTable.index)[0:64]) | 99 | #print(list(scoresTable.index)[0:64]) | ... | ... |
-
Please register or login to post a comment