Estefani Gaytan Nunez

upload

203 KB | W: | H:

245 KB | W: | H:

  • 2-up
  • Swipe
  • Onion skin
......@@ -120,10 +120,29 @@ if __name__ == '__main__':
plt.ylabel("score")
plt.ylim(-0.2, 1.2)
#lines=['-', '--', '-.', ':', ',', 'o', 'v', '^', '<', '>', '1', '2', '3', '4', 's', 'p', '*', 'h', 'H', '+', 'x', 'D', 'd', '|', '_']
lines = [ 'r--', 'rs', 'r^', 'r:', 'rH', 'g--', 'gs', 'g^', 'g|', 'gH' , 'b--', 'bs', 'b^', 'b|', 'bH', 'r+']
#lines = [ 'r--', 'rs', 'r^', 'r:', 'rH', 'g--', 'gs', 'g^', 'g|', 'gH' , 'b--', 'bs', 'b^', 'b|', 'bH', 'r+']
lines = [ 'r--', 'r-.', 'r:', 'g--', 'g-.', 'g:', 'b--', 'b-.', 'b:' , 'm--', 'm-.', 'm:', 'c--', 'c-.', 'c:']
for i,k in enumerate(tags.keys()):
plt.grid(False)
plt.plot(precision[k], lines[i], label=k, linewidth=8)
plt.plot(precision[k], lines[i], label=k, linewidth=(15-i)*2)
plt.legend(loc='lower right')
plt.tight_layout()
plt.xticks(range(8),['run1', 'run2', 'run3', 'run4', 'run5', 'run6', 'run7', 'run8'])
fig.savefig(imageName, bbox_inches='tight', pad_inches = 0.5)
imageName = str(options.figureName) + '_variants_' + str(options.version)
fig = plt.figure()
plt.rcParams.update({'font.size': 15})
fig.set_figheight(13)
fig.set_figwidth(20)
plt.xlabel("Runs")
plt.ylabel("score")
plt.ylim(-0.2, 1.2)
variantTags = [k for k in tags.keys() if len(set(tags[k]))>1 ]
lines = [ 'r^', 'ro', 'g^', 'go', 'b^', 'bo' , 'm^', 'mo', 'c^', 'co', 'ch', 'rh', 'gh', 'bh','mh']
for i,k in enumerate(variantTags):
plt.grid(False)
plt.plot(precision[k], lines[i], label=k, linewidth=(15-i)*2)
plt.legend(loc='lower right')
plt.tight_layout()
plt.xticks(range(8),['run1', 'run2', 'run3', 'run4', 'run5', 'run6', 'run7', 'run8'])
......
#git add FiguresGrid_v12.png
#git add FiguresGrid*
git add --all .
git commit -m "upload"
#git pull
......